about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/ui/components/compose_panel.js
blob: f5eefee0d631714f938df0a02792198d6834e5a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from 'react';
import SearchContainer from 'flavours/glitch/features/compose/containers/search_container';
import ComposeFormContainer from 'flavours/glitch/features/compose/containers/compose_form_container';
import NavigationContainer from 'flavours/glitch/features/compose/containers/navigation_container';
import LinkFooter from './link_footer';

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

export default ComposePanel;