mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
7 lines
256 B
JavaScript
7 lines
256 B
JavaScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import styles from './PageHeader.module.css';
|
|
|
|
export default function PageHeader({ children, className }) {
|
|
return <div className={classNames(styles.header, className)}>{children}</div>;
|
|
}
|