import React from 'react'; import s0 from './ContentHeader.module.scss'; type Props = { title: string; }; function ContentHeader({ title }: Props) { return (

{title}

); } export default React.memo(ContentHeader);