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.
15 lines
584 B
15 lines
584 B
import ComposeFormContainer from 'mastodon/features/compose/containers/compose_form_container'; |
|
import LoadingBarContainer from 'mastodon/features/ui/containers/loading_bar_container'; |
|
import ModalContainer from 'mastodon/features/ui/containers/modal_container'; |
|
import NotificationsContainer from 'mastodon/features/ui/containers/notifications_container'; |
|
|
|
const Compose = () => ( |
|
<> |
|
<ComposeFormContainer autoFocus withoutNavigation /> |
|
<NotificationsContainer /> |
|
<ModalContainer /> |
|
<LoadingBarContainer className='loading-bar' /> |
|
</> |
|
); |
|
|
|
export default Compose;
|
|
|