2023-05-28 08:18:23 -04:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-28 10:38:10 -04:00
|
|
|
|
2023-11-15 06:01:51 -05: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 02:26:40 -05:00
|
|
|
|
2023-05-28 08:18:23 -04:00
|
|
|
export default class Compose extends PureComponent {
|
2017-12-04 02:26:40 -05:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div>
|
2023-01-30 08:49:10 -05:00
|
|
|
<ComposeFormContainer autoFocus />
|
2017-12-04 02:26:40 -05:00
|
|
|
<NotificationsContainer />
|
|
|
|
<ModalContainer />
|
|
|
|
<LoadingBarContainer className='loading-bar' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|