umami/components/pages/reports/Report.js

6 lines
148 B
JavaScript
Raw Normal View History

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