You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			16 lines
		
	
	
		
			401 B
		
	
	
	
		
			TypeScript
		
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			401 B
		
	
	
	
		
			TypeScript
		
	
| 
											6 years ago
										 | import React from 'react'; | ||
| 
											5 years ago
										 | import { SettingsViewProps } from './SessionSettings'; | ||
| 
											6 years ago
										 | 
 | ||
| 
											4 years ago
										 | type Props = Pick<SettingsViewProps, 'category'> & { | ||
| 
											5 years ago
										 |   categoryTitle: string; | ||
| 
											4 years ago
										 | }; | ||
| 
											6 years ago
										 | 
 | ||
| 
											4 years ago
										 | export const SettingsHeader = (props: Props) => { | ||
| 
											5 years ago
										 |   const { categoryTitle } = props; | ||
|  |   return ( | ||
|  |     <div className="session-settings-header"> | ||
|  |       <div className="session-settings-header-title">{categoryTitle}</div> | ||
|  |     </div> | ||
|  |   ); | ||
| 
											5 years ago
										 | }; |