2018-09-19 20:42:56 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import Main from './components/Main';
|
2018-12-02 02:06:28 +00:00
|
|
|
import './css/App.css';
|
2018-12-03 02:13:16 +00:00
|
|
|
import { CookiesProvider } from 'react-cookie';
|
2018-09-19 20:42:56 +00:00
|
|
|
|
|
|
|
class App extends Component {
|
2018-11-09 02:57:00 +00:00
|
|
|
componentDidMount() {
|
|
|
|
document.title = 'Marten Tracker';
|
|
|
|
}
|
|
|
|
|
2018-09-19 20:42:56 +00:00
|
|
|
render() {
|
|
|
|
return (
|
2018-12-03 02:13:16 +00:00
|
|
|
<CookiesProvider>
|
2018-12-03 02:15:24 +00:00
|
|
|
<div>
|
|
|
|
<Main />
|
|
|
|
</div>
|
|
|
|
</CookiesProvider>
|
2018-09-19 20:42:56 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-02 02:06:28 +00:00
|
|
|
export default App;
|