You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
337 B
17 lines
337 B
import Router from './router.js'; |
|
import {Provider} from 'react-redux'; |
|
import store from './redux/store'; |
|
import 'rc-slider/assets/index.css'; |
|
import 'react-circular-progressbar/dist/styles.css'; |
|
|
|
import "./App.css"; |
|
|
|
function App() { |
|
return ( |
|
<Provider store={store}> |
|
<Router /> |
|
</Provider> |
|
); |
|
} |
|
|
|
export default App;
|
|
|