From 727226e558d42f39e3e3814a3066ef252b74b57e Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Sun, 24 Jul 2022 16:21:28 -0500 Subject: [PATCH] redux object --- squarenotsquare/index.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/squarenotsquare/index.js b/squarenotsquare/index.js index d137747..7b774ac 100644 --- a/squarenotsquare/index.js +++ b/squarenotsquare/index.js @@ -1,18 +1,15 @@ -/** - * @format - */ - +import React from 'react'; import {AppRegistry} from 'react-native'; import {name as appName} from './app.json'; import SquareNotSquare from './Launcher'; import configStore from './redux/CreateStore'; import { appInit } from './redux/actions/SystemActions'; -const squareStore = configStore(); +const squareStore = configStore; squareStore.dispatch(appInit()); const ProppedContainer = () => { return ; -} +}; AppRegistry.registerComponent(appName, () => ProppedContainer); \ No newline at end of file