* 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
		
			
				
	
	
		
			18 lines
		
	
	
		
			476 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 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;
 |