2017-08-14 12:53:31 +10:00
|
|
|
import React from 'react';
|
|
|
|
import ComposeFormContainer from '../../compose/containers/compose_form_container';
|
|
|
|
import NotificationsContainer from '../../ui/containers/notifications_container';
|
|
|
|
import LoadingBarContainer from '../../ui/containers/loading_bar_container';
|
2017-09-13 23:20:03 +10:00
|
|
|
import ModalContainer from '../../ui/containers/modal_container';
|
2017-08-14 12:53:31 +10:00
|
|
|
|
|
|
|
export default class Compose extends React.PureComponent {
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<ComposeFormContainer />
|
|
|
|
<NotificationsContainer />
|
2017-09-13 23:20:03 +10:00
|
|
|
<ModalContainer />
|
2017-08-14 12:53:31 +10:00
|
|
|
<LoadingBarContainer className='loading-bar' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|