mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
17 lines
385 B
JavaScript
17 lines
385 B
JavaScript
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import { useStore } from 'redux/store';
|
|
import 'styles/variables.css';
|
|
import 'styles/bootstrap-grid.css';
|
|
import 'styles/index.css';
|
|
|
|
export default function App({ Component, pageProps }) {
|
|
const store = useStore();
|
|
|
|
return (
|
|
<Provider store={store}>
|
|
<Component {...pageProps} />
|
|
</Provider>
|
|
);
|
|
}
|