17 lines
252 B
TypeScript
17 lines
252 B
TypeScript
|
|
import {Component} from "react";
|
|||
|
|
|
|||
|
|
type Properties = {
|
|||
|
|
email: string,
|
|||
|
|
password: string,
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
class RegisterPage extends Component {
|
|||
|
|
render(){
|
|||
|
|
return (
|
|||
|
|
<h1>dfsdaffdsa</h1>
|
|||
|
|
);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
export default RegisterPage;
|