File tree Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -21,19 +21,21 @@ const initialState = window.__INITIAL_STATE__;
2121const store = configureStore ( initialState ) ;
2222
2323const App = ( ) => (
24- < Provider store = { store } >
25- < ThemeProvider >
26- < Router history = { browserHistory } >
27- < SkipLink targetId = "play-sketch" text = "PlaySketch" />
28- < Routing />
29- </ Router >
30- </ ThemeProvider >
31- </ Provider >
24+ < >
25+ < Router history = { browserHistory } >
26+ < SkipLink targetId = "play-sketch" text = "PlaySketch" />
27+ < Routing />
28+ </ Router >
29+ </ >
3230) ;
3331
3432render (
35- < Suspense fallback = { < Loader /> } >
36- < App />
37- </ Suspense > ,
33+ < Provider store = { store } >
34+ < ThemeProvider >
35+ < Suspense fallback = { < Loader /> } >
36+ < App />
37+ </ Suspense >
38+ </ ThemeProvider >
39+ </ Provider > ,
3840 document . getElementById ( 'root' )
3941) ;
You can’t perform that action at this time.
0 commit comments