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.
18 lines
476 B
18 lines
476 B
6 years ago
|
import React from 'react';
|
||
|
import SearchContainer from 'mastodon/features/compose/containers/search_container';
|
||
|
import SearchResultsContainer from 'mastodon/features/compose/containers/search_results_container';
|
||
|
|
||
|
const Search = () => (
|
||
|
<div className='column search-page'>
|
||
|
<SearchContainer />
|
||
|
|
||
|
<div className='drawer__pager'>
|
||
|
<div className='drawer__inner darker'>
|
||
|
<SearchResultsContainer />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default Search;
|