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

20 lines
331 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;
2016-10-25 22:15:33 +03:00
const Home = () => {
return (
<div className={styles.home}>
2016-10-20 22:42:39 +03:00
<h1>
<FormattedMessage id='greetings' />
</h1>
</div>
);
};
2016-10-25 22:15:33 +03:00
module.exports = Home;