Report updates.
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
import Page from 'components/layout/Page';
|
||||
import styles from './reports.module.css';
|
||||
|
||||
export default function Report({ children, ...props }) {
|
||||
return <Page {...props}>{children}</Page>;
|
||||
export function Report({ children, ...props }) {
|
||||
return (
|
||||
<Page {...props} className={styles.container}>
|
||||
{children}
|
||||
</Page>
|
||||
);
|
||||
}
|
||||
|
||||
export default Report;
|
||||
|
||||
Reference in New Issue
Block a user