2019-07-02 03:10:25 -04:00
|
|
|
import ComposeFormContainer from '../../compose/containers/compose_form_container';
|
2019-08-07 01:02:36 -04:00
|
|
|
import NotificationsContainer from '../../../containers/notifications_container';
|
|
|
|
import LoadingBarContainer from '../../../containers/loading_bar_container';
|
|
|
|
import ModalContainer from '../../../containers/modal_container';
|
2019-07-02 03:10:25 -04:00
|
|
|
|
2019-07-29 15:20:00 -04:00
|
|
|
export default class Compose extends PureComponent {
|
2019-07-02 03:10:25 -04:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<ComposeFormContainer />
|
|
|
|
<NotificationsContainer />
|
|
|
|
<ModalContainer />
|
|
|
|
<LoadingBarContainer className='loading-bar' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|