mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-15 12:44:24 -05:00
21 lines
614 B
JavaScript
21 lines
614 B
JavaScript
import React from 'react';
|
|
import ComposeFormContainer from '../../compose/containers/compose_form_container';
|
|
import NotificationsContainer from '../../ui/containers/notifications_container';
|
|
import LoadingBarContainer from '../../ui/containers/loading_bar_container';
|
|
import ModalContainer from '../../ui/containers/modal_container';
|
|
|
|
export default class Compose extends React.PureComponent {
|
|
|
|
render () {
|
|
return (
|
|
<div>
|
|
<ComposeFormContainer />
|
|
<NotificationsContainer />
|
|
<ModalContainer />
|
|
<LoadingBarContainer className='loading-bar' />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|