2017-12-04 02:26:40 -05:00
|
|
|
import React from 'react';
|
2019-04-20 15:28:03 -04:00
|
|
|
import ComposeFormContainer from 'flavours/glitch/features/compose/containers/compose_form_container';
|
2017-12-04 02:26:40 -05:00
|
|
|
import NotificationsContainer from 'flavours/glitch/features/ui/containers/notifications_container';
|
|
|
|
import LoadingBarContainer from 'flavours/glitch/features/ui/containers/loading_bar_container';
|
|
|
|
import ModalContainer from 'flavours/glitch/features/ui/containers/modal_container';
|
|
|
|
|
|
|
|
export default class Compose extends React.PureComponent {
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div>
|
2019-04-20 15:28:03 -04:00
|
|
|
<ComposeFormContainer />
|
2017-12-04 02:26:40 -05:00
|
|
|
<NotificationsContainer />
|
|
|
|
<ModalContainer />
|
|
|
|
<LoadingBarContainer className='loading-bar' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|