umami/components/pages/reports/Report.js

6 lines
148 B
JavaScript
Raw Normal View History

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