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.

18 lines
346 B

3 years ago
import Router from "./router.js";
3 years ago
import { Provider } from "react-redux";
import store from "./redux/store";
3 years ago
import "./App.scss";
3 years ago
3 years ago
// import "rc-slider/assets/index.css";
// import "react-circular-progressbar/dist/styles.css";
3 years ago
function App() {
return (
3 years ago
<Provider store={store}>
3 years ago
<Router />
3 years ago
</Provider>
);
}
export default App;