Almost ready

This commit is contained in:
Eric Gullickson
2025-11-08 15:34:29 -06:00
parent bb4a356b9e
commit 408a0736c0
7 changed files with 66 additions and 60 deletions

View File

@@ -84,14 +84,14 @@ export const FuelLogsPage: React.FC = () => {
<FuelLogForm />
</Grid>
<Grid item xs={12} md={6}>
<Typography variant="h6" gutterBottom>Recent Fuel Logs</Typography>
<Typography variant="h6" gutterBottom>Summary</Typography>
<FuelStatsCard logs={fuelLogs} />
<Typography variant="h6" sx={{ mt: 3 }} gutterBottom>Recent Fuel Logs</Typography>
<FuelLogsList
logs={fuelLogs}
onEdit={handleEdit}
onDelete={handleDelete}
/>
<Typography variant="h6" sx={{ mt: 3 }} gutterBottom>Summary</Typography>
<FuelStatsCard logs={fuelLogs} />
</Grid>
</Grid>