~cytrogen/masto-fe

ref: 2e13f2ac44c688ad87474dc6451243e1c443a7d8 masto-fe/app/javascript/mastodon/features/ui/components/compose_panel.js -rw-r--r-- 609 bytes
2e13f2ac — dependabot-preview[bot] Bump eslint-plugin-jsx-a11y from 6.1.2 to 6.2.1 (#10923) 6 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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';
import LinkFooter from './link_footer';

const ComposePanel = () => (
  <div className='compose-panel'>
    <SearchContainer openInRoute />
    <NavigationContainer />
    <ComposeFormContainer />

    <div className='flex-spacer' />

    <LinkFooter withHotkeys />
  </div>
);

export default ComposePanel;