three.cad/src/app.jsx

12 lines
178 B
React
Raw Normal View History

2021-03-26 17:25:28 +08:00
import React from 'react';
import { Provider } from 'react-redux';
export const App = ({ store }) => (
<Provider store={store}>
<div>hellodddddd</div>
</Provider>
);