umami/pages/_app.js

17 lines
385 B
JavaScript
Raw Normal View History

2020-07-17 10:03:38 +02:00
import React from 'react';
2020-08-05 07:45:05 +02:00
import { Provider } from 'react-redux';
import { useStore } from 'redux/store';
2020-08-06 04:04:02 +02:00
import 'styles/variables.css';
2020-07-17 10:03:38 +02:00
import 'styles/bootstrap-grid.css';
2020-08-02 06:20:52 +02:00
import 'styles/index.css';
2020-07-17 10:03:38 +02:00
export default function App({ Component, pageProps }) {
2020-08-05 07:45:05 +02:00
const store = useStore();
return (
<Provider store={store}>
<Component {...pageProps} />
</Provider>
);
2020-07-17 10:03:38 +02:00
}