This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-serve-actions/app/components/Analytics/Analytics.tsx

8 lines
166 B
TypeScript

import { Paper } from '@mui/material';
export function Analytics() {
return (
<Paper sx={{ width: '100%', height: 'calc(100vh - 50px)' }}>To do</Paper>
);
}