2023-05-28 12:18:23 +00:00
|
|
|
import { PureComponent } from 'react';
|
2019-04-20 19:28:03 +00:00
|
|
|
import ComposeFormContainer from 'flavours/glitch/features/compose/containers/compose_form_container';
|
2017-12-04 07:26:40 +00: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';
|
|
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|