mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
20 lines
448 B
JavaScript
20 lines
448 B
JavaScript
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
import StatusListContainer from '../ui/containers/status_list_container';
|
|
import Column from '../ui/components/column';
|
|
|
|
const HomeTimeline = React.createClass({
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
render () {
|
|
return (
|
|
<Column icon='home' heading='Home'>
|
|
<StatusListContainer type='home' />
|
|
</Column>
|
|
);
|
|
},
|
|
|
|
});
|
|
|
|
export default HomeTimeline;
|