Added a testing sign in method for Redux.

This commit is contained in:
Patrick Fic
2020-08-05 22:04:23 -07:00
parent 53360b1d5e
commit 481daac70c
8 changed files with 579 additions and 188 deletions

2
App.js
View File

@@ -10,6 +10,7 @@ import {
import { store, persistor } from "./redux/store";
import { Provider } from "react-redux";
import { PersistGate } from "redux-persist/integration/react";
import SignIn from "./components/signin.component";
export default function App() {
return (
@@ -19,6 +20,7 @@ export default function App() {
<View style={styles.container}>
<Text>Open up App.js to start working on your app! ttt</Text>
<StatusBar style="auto" />
<SignIn />
</View>
</SafeAreaView>
</PersistGate>