27 lines
No EOL
622 B
JavaScript
27 lines
No EOL
622 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('Mailtrain 2 beta')}</h2>
|
|
<div>{t('Build') + ' 2019-08-31-1200'}</div>
|
|
</div>
|
|
);
|
|
}
|
|
} |