diff --git a/src/screens/App.js b/src/screens/App.js
index c1c6239..bfc4131 100644
--- a/src/screens/App.js
+++ b/src/screens/App.js
@@ -3,6 +3,8 @@ import 'rsuite/lib/styles/index.less';
import { Container } from 'rsuite';
import Login from './Login';
+import Register from './Register';
+
import TopBar from '../components/TopBar';
const containerStyle = {
@@ -18,7 +20,7 @@ function App() {
return (
-
+
);
}
diff --git a/src/screens/Register.js b/src/screens/Register.js
new file mode 100644
index 0000000..3a0bd9e
--- /dev/null
+++ b/src/screens/Register.js
@@ -0,0 +1,78 @@
+import React from 'react';
+
+import {
+ Content,
+ FlexboxGrid,
+ Panel,
+ Form,
+ FormGroup,
+ FormControl,
+ HelpBlock,
+ Button,
+ Dropdown,
+} from 'rsuite';
+
+const boxStyle = {
+ margin: '50px 10px',
+};
+
+function Register() {
+ return (
+
+
+
+ Register} bordered style={boxStyle}>
+
+
+
+
+
+ );
+}
+
+export default Register;