mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
* Add responsive panels to the single-column layout * Fixes * Fix not being able to save the preference * Fix code style issues * Set max-height on the compose textarea and add a link to relationship manager
17 lines
476 B
JavaScript
17 lines
476 B
JavaScript
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;
|