mirror of
https://github.com/umami-software/umami.git
synced 2026-02-22 13:35:35 +01:00
Updated loading for reports.
This commit is contained in:
parent
9735769413
commit
e1c65cdf2a
4 changed files with 24 additions and 7 deletions
|
|
@ -1,6 +1,14 @@
|
|||
import styles from './ReportBody.module.css';
|
||||
import { useContext } from 'react';
|
||||
import { ReportContext } from './Report';
|
||||
|
||||
export function ReportBody({ children }) {
|
||||
const { report } = useContext(ReportContext);
|
||||
|
||||
if (!report) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return <div className={styles.body}>{children}</div>;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue