2020-08-09 08:48:43 +02:00
|
|
|
import React from 'react';
|
2020-09-22 06:34:55 +02:00
|
|
|
import classNames from 'classnames';
|
2020-08-07 09:24:01 +02:00
|
|
|
import styles from './PageHeader.module.css';
|
|
|
|
|
2020-09-22 06:34:55 +02:00
|
|
|
export default function PageHeader({ children, className }) {
|
|
|
|
return <div className={classNames(styles.header, className)}>{children}</div>;
|
2020-08-07 09:24:01 +02:00
|
|
|
}
|