1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-15 07:40:07 +02:00
copilot/frontend/src/containers/home/index.js

18 lines
311 B
JavaScript
Raw Normal View History

const React = require('react');
2016-10-20 22:42:39 +03:00
const ReactIntl = require('react-intl');
const styles = require('./home.css');
2016-10-20 22:42:39 +03:00
const {
FormattedMessage
} = ReactIntl;
module.exports = () => {
return (
<div className={styles.home}>
2016-10-20 22:42:39 +03:00
<h1>
<FormattedMessage id='greetings' />
</h1>
</div>
);
};