12 lines
178 B
React
12 lines
178 B
React
![]() |
|
||
|
|
||
|
import React from 'react';
|
||
|
import { Provider } from 'react-redux';
|
||
|
|
||
|
|
||
|
export const App = ({ store }) => (
|
||
|
<Provider store={store}>
|
||
|
<div>hellodddddd</div>
|
||
|
</Provider>
|
||
|
);
|