You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
help_user/src/account/RegisterProps.tsx

14 lines
206 B

/**
* 注册表单
*/
export interface RegisterProps {
//跳转登录
toLogin:Function;
}
export interface RegisterState {
//管理员名
user:string;
//密码
password:string;
}