summaryrefslogtreecommitdiff
path: root/src/components/ContentHeader.tsx
blob: 47090375983d63b8213e30332f4dbc9f70bdac79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';

import s0 from './ContentHeader.module.scss';

type Props = {
  children?: React.ReactNode;
};

function ContentHeader({ children }: Props) {
  return <div className={s0.root}>{children}</div>;
}

export default React.memo(ContentHeader);