Complete rewrite of local state management.

This commit is contained in:
Patrick Fic
2019-12-06 23:30:15 -08:00
parent 8a72294c91
commit 4f3d917e06
17 changed files with 366 additions and 217 deletions

View File

@@ -1,14 +1,6 @@
import React from "react";
import SignInComponent from "../../components/sign-in-form/sign-in-form.component";
import { Redirect } from "react-router-dom";
export default ({signedIn}) => {
console.log(signedIn)
return (
<div>
<SignInComponent />
</div>
);
export default () => {
return <SignInComponent />;
};