import React from 'react'; import { SettingsViewProps } from './SessionSettings'; type Props = Pick & { categoryTitle: string; }; export const SettingsHeader = (props: Props) => { const { categoryTitle } = props; return (
{categoryTitle}
); };