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.
		
		
		
		
		
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			511 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			511 B
		
	
	
	
		
			TypeScript
		
	
import React from 'react';
 | 
						|
import { SettingsViewProps } from './SessionSettings';
 | 
						|
 | 
						|
interface Props extends SettingsViewProps {
 | 
						|
  // tslint:disable-next-line: react-unused-props-and-state
 | 
						|
  categoryTitle: string;
 | 
						|
  // tslint:disable-next-line: react-unused-props-and-state
 | 
						|
}
 | 
						|
 | 
						|
export const SettingsHeader = (props: Props) => {
 | 
						|
  const { categoryTitle } = props;
 | 
						|
  return (
 | 
						|
    <div className="session-settings-header">
 | 
						|
      <div className="session-settings-header-title">{categoryTitle}</div>
 | 
						|
    </div>
 | 
						|
  );
 | 
						|
};
 |