This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-05-25 12:27:00 -07:00
|
|
|
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';
|
2019-05-27 12:58:41 -07:00
|
|
|
import LinkFooter from './link_footer';
|
2019-05-25 12:27:00 -07:00
|
|
|
|
|
|
|
const ComposePanel = () => (
|
|
|
|
<div className='compose-panel'>
|
|
|
|
<SearchContainer openInRoute />
|
|
|
|
<NavigationContainer />
|
2019-06-16 07:02:26 -07:00
|
|
|
<ComposeFormContainer singleColumn />
|
2019-05-27 12:58:41 -07:00
|
|
|
<LinkFooter withHotkeys />
|
2019-05-25 12:27:00 -07:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default ComposePanel;
|