You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
690 B
20 lines
690 B
import React from 'react';
|
|
import ComposeFormContainer from 'flavours/glitch/features/compose/containers/compose_form_container';
|
|
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>
|
|
<ComposeFormContainer />
|
|
<NotificationsContainer />
|
|
<ModalContainer />
|
|
<LoadingBarContainer className='loading-bar' />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|