mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
7 lines
173 B
JavaScript
7 lines
173 B
JavaScript
import styles from './reports.module.css';
|
|
|
|
export function ReportBody({ children }) {
|
|
return <div className={styles.body}>{children}</div>;
|
|
}
|
|
|
|
export default ReportBody;
|