Finished functionally complete client registration workflow

This commit is contained in:
Alexander Wong
2017-08-29 19:51:45 -06:00
parent aaad6ea3eb
commit 415aea74a3
25 changed files with 587 additions and 66 deletions
+16
View File
@@ -0,0 +1,16 @@
import React, { Component } from "react";
import { Container } from "semantic-ui-react";
class Login extends Component {
render() {
return <LoginView />;
}
}
const LoginView = () => (
<Container>
<p>Login</p>
</Container>
);
export default Login;