register.tsx 227 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
import * as React from "react";
import { Component } from "react";
import styles from "./register.module.css";
export const Register: React.FC = () => {
  return (
    <>
      {" "}
      <h1>注册页面</h1>
    </>
  );
};