28 lines
773 B
JavaScript
28 lines
773 B
JavaScript
import App, {Container} from 'next/app';
|
|
import React from 'react';
|
|
import {Provider} from 'react-redux';
|
|
import Notifications from 'react-notify-toast';
|
|
import Favicon from 'react-favicon';
|
|
|
|
import withReduxStore from '../js/redux/reduxStoreBinder';
|
|
import {verifyCredentials} from '../js/api.js';
|
|
|
|
class TurniereApp extends App {
|
|
componentDidMount() {
|
|
verifyCredentials();
|
|
}
|
|
|
|
render() {
|
|
const {Component, pageProps, reduxStore} = this.props;
|
|
return (<Container>
|
|
<Notifications/>
|
|
<Favicon url="../static/icons/favicon.ico"/>
|
|
<Provider store={reduxStore}>
|
|
<Component {...pageProps} />
|
|
</Provider>
|
|
</Container>);
|
|
}
|
|
}
|
|
|
|
export default withReduxStore(TurniereApp);
|