mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
import Page from 'components/layout/Page';
|
|
import styles from './reports.module.css';
|
|
|
|
export function Report({ children, ...props }) {
|
|
return (
|
|
<Page {...props} className={styles.container}>
|
|
{children}
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
export default Report;
|