2019-05-25 15:27:00 -04:00
|
|
|
import React from 'react';
|
|
|
|
import SearchContainer from 'mastodon/features/compose/containers/search_container';
|
|
|
|
import ComposeFormContainer from 'mastodon/features/compose/containers/compose_form_container';
|
|
|
|
import NavigationContainer from 'mastodon/features/compose/containers/navigation_container';
|
2019-05-27 15:58:41 -04:00
|
|
|
import LinkFooter from './link_footer';
|
2019-05-25 15:27:00 -04:00
|
|
|
|
|
|
|
const ComposePanel = () => (
|
|
|
|
<div className='compose-panel'>
|
|
|
|
<SearchContainer openInRoute />
|
|
|
|
<NavigationContainer />
|
2019-06-16 12:46:55 -04:00
|
|
|
<ComposeFormContainer singleColumn />
|
2019-05-27 15:58:41 -04:00
|
|
|
<LinkFooter withHotkeys />
|
2019-05-25 15:27:00 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default ComposePanel;
|