test: add playwright with basic tests for home page

This commit is contained in:
Riccardo
2024-07-07 16:14:07 +02:00
parent 8c36c90710
commit ba17554801
9 changed files with 123 additions and 12 deletions

View File

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