From 995f742ee1cf24ef2f85e31b81d23864936ae7f1 Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Sat, 23 Jul 2022 12:37:09 -0500 Subject: [PATCH] index redux store setup --- squarenotsquare/index.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/squarenotsquare/index.js b/squarenotsquare/index.js index 36d484b..02e86a7 100644 --- a/squarenotsquare/index.js +++ b/squarenotsquare/index.js @@ -3,7 +3,14 @@ */ import {AppRegistry} from 'react-native'; -import App from './App'; import {name as appName} from './app.json'; +import SquareNotSquare from './Launcher'; +import configStore from './redux/CreateStore'; -AppRegistry.registerComponent(appName, () => App); \ No newline at end of file +const squareStore = configStore(); + +const ProppedContainer = () => { + return ; +} + +AppRegistry.registerComponent(appName, () => ProppedContainer); \ No newline at end of file