feat(temp): sample data

This commit is contained in:
karishmas6
2024-08-25 22:47:47 +05:30
parent f753e7ce15
commit 6404aded98

View File

@@ -29,6 +29,14 @@ function createData(
return { name, calories, fat, carbs, protein };
}
const rows = [
createData('Frozen yoghurt', 159, 6.0, 24, 4.0),
createData('Ice cream sandwich', 237, 9.0, 37, 4.3),
createData('Eclair', 262, 16.0, 24, 6.0),
createData('Cupcake', 305, 3.7, 67, 4.3),
createData('Gingerbread', 356, 16.0, 49, 3.9),
];
export const InterpretationLog = () => {
const [open, setOpen] = useState<boolean>(false);