763735f92e
Port 451e5980b6
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
20 lines
630 B
JavaScript
20 lines
630 B
JavaScript
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 />
|
|
|
|
<div className='flex-spacer' />
|
|
|
|
<LinkFooter withHotkeys />
|
|
</div>
|
|
);
|
|
|
|
export default ComposePanel;
|