2023-05-28 12:18:23 +00:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2023-11-15 11:01:51 +00:00
|
|
|
import ComposeFormContainer from '../../compose/containers/compose_form_container';
|
|
|
|
import LoadingBarContainer from '../../ui/containers/loading_bar_container';
|
|
|
|
import ModalContainer from '../../ui/containers/modal_container';
|
|
|
|
import NotificationsContainer from '../../ui/containers/notifications_container';
|
2017-12-04 07:26:40 +00:00
|
|
|
|
2023-05-28 12:18:23 +00:00
|
|
|
export default class Compose extends PureComponent {
|
2017-12-04 07:26:40 +00:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div>
|
2023-01-30 13:49:10 +00:00
|
|
|
<ComposeFormContainer autoFocus />
|
2017-12-04 07:26:40 +00:00
|
|
|
<NotificationsContainer />
|
|
|
|
<ModalContainer />
|
|
|
|
<LoadingBarContainer className='loading-bar' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|