28 lines
719 B
JavaScript
Raw Normal View History

2016-09-02 17:52:34 +02:00
/*
* DatabasesPage
*
2016-09-06 17:44:06 +02:00
* This is the first thing users see of our App, at the '/' route
*
* NOTE: while this component should technically be a stateless functional
* component (SFC), hot reloading does not currently support SFCs. If hot
* reloading is not a neccessity for you then you can refactor it and remove
* the linting exception.
2016-09-02 17:52:34 +02:00
*/
import React from 'react';
import { FormattedMessage } from 'react-intl';
import messages from './messages';
2016-09-06 17:44:06 +02:00
export default class DatabasesPage extends React.Component { // eslint-disable-line react/prefer-stateless-function
2016-09-02 17:52:34 +02:00
render() {
return (
2016-09-06 17:44:06 +02:00
<div>
<h1>
<FormattedMessage {...messages.header} />
</h1>
2016-09-02 17:52:34 +02:00
</div>
);
}
}