mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 23:57:12 +01:00
Report updates.
This commit is contained in:
parent
40f53e8856
commit
0fb93ff00b
147 changed files with 1095 additions and 628 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue