2018-02-25 19:54:15 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React, {Component} from 'react';
|
2018-11-17 22:26:45 +00:00
|
|
|
import { withNamespaces } from 'react-i18next';
|
2018-02-25 19:54:15 +00:00
|
|
|
import { requiresAuthenticatedUser } from './lib/page';
|
|
|
|
|
2018-11-17 22:26:45 +00:00
|
|
|
@withNamespaces()
|
2018-02-25 19:54:15 +00:00
|
|
|
@requiresAuthenticatedUser
|
|
|
|
export default class List extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const t = this.props.t;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2018-11-17 22:26:45 +00:00
|
|
|
<h2>{t('home.welcome')}</h2>
|
2018-02-25 19:54:15 +00:00
|
|
|
<div>TODO: some dashboard</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|