mailtrain/client/src/Home.js
Tomas Bures cfdcaf65d8 Fixed bug - files/uploaded had wrong owner
Upgrade to React 16
2018-12-26 04:38:02 +01:00

27 lines
No EOL
611 B
JavaScript

'use strict';
import React, {Component} from 'react';
import {withTranslation} from './lib/i18n';
import {requiresAuthenticatedUser} from './lib/page';
import {withComponentMixins} from "./lib/decorator-helpers";
@withComponentMixins([
withTranslation,
requiresAuthenticatedUser
])
export default class List extends Component {
constructor(props) {
super(props);
}
render() {
const t = this.props.t;
return (
<div>
<h2>{t('welcomeToMailtrain')}</h2>
<div>TODO: some dashboard</div>
</div>
);
}
}