2023-05-18 08:20:06 +02:00
|
|
|
import Page from 'components/layout/Page';
|
2023-05-20 18:02:08 +02:00
|
|
|
import styles from './reports.module.css';
|
2023-05-18 08:20:06 +02:00
|
|
|
|
2023-05-20 18:02:08 +02:00
|
|
|
export function Report({ children, ...props }) {
|
|
|
|
return (
|
|
|
|
<Page {...props} className={styles.container}>
|
|
|
|
{children}
|
|
|
|
</Page>
|
|
|
|
);
|
2023-05-18 08:20:06 +02:00
|
|
|
}
|
2023-05-20 18:02:08 +02:00
|
|
|
|
|
|
|
export default Report;
|