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