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.

16 lines
584 B

  1. import React from 'react';
  2. import SearchContainer from 'mastodon/features/compose/containers/search_container';
  3. import ComposeFormContainer from 'mastodon/features/compose/containers/compose_form_container';
  4. import NavigationContainer from 'mastodon/features/compose/containers/navigation_container';
  5. import LinkFooter from './link_footer';
  6. const ComposePanel = () => (
  7. <div className='compose-panel'>
  8. <SearchContainer openInRoute />
  9. <NavigationContainer />
  10. <ComposeFormContainer singleColumn />
  11. <LinkFooter withHotkeys />
  12. </div>
  13. );
  14. export default ComposePanel;