2021-03-26 17:25:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import { Provider } from 'react-redux';
|
2021-03-27 03:18:11 +08:00
|
|
|
import './app.scss'
|
2021-03-26 17:25:28 +08:00
|
|
|
|
2021-03-27 03:18:11 +08:00
|
|
|
export const Root = ({ store }) => (
|
2021-03-26 17:25:28 +08:00
|
|
|
<Provider store={store}>
|
2021-03-27 03:18:11 +08:00
|
|
|
<App></App>
|
2021-03-26 17:25:28 +08:00
|
|
|
</Provider>
|
|
|
|
);
|
2021-03-27 03:18:11 +08:00
|
|
|
|
|
|
|
|
|
|
|
const App = () => {
|
|
|
|
|
|
|
|
return <>
|
|
|
|
<div>in the world where</div>
|
|
|
|
</>
|
|
|
|
}
|