2018-02-25 19:54:15 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React, {Component} from 'react';
|
2018-12-26 03:38:02 +00:00
|
|
|
import {withTranslation} from './lib/i18n';
|
|
|
|
import {requiresAuthenticatedUser} from './lib/page';
|
|
|
|
import {withComponentMixins} from "./lib/decorator-helpers";
|
2018-02-25 19:54:15 +00:00
|
|
|
|
2018-12-26 03:38:02 +00:00
|
|
|
@withComponentMixins([
|
|
|
|
withTranslation,
|
|
|
|
requiresAuthenticatedUser
|
|
|
|
])
|
2018-02-25 19:54:15 +00:00
|
|
|
export default class List extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const t = this.props.t;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2018-11-18 20:31:22 +00:00
|
|
|
<h2>{t('welcomeToMailtrain')}</h2>
|
2018-02-25 19:54:15 +00:00
|
|
|
<div>TODO: some dashboard</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|