2024-07-01 13:11:20 +02:00
|
|
|
import { AutoGrid } from ':components/AutoGrid.tsx'
|
|
|
|
import { MachineCard, machineMock } from ':components/MachineCard.tsx'
|
2024-02-15 11:30:35 +01:00
|
|
|
|
|
|
|
export default function Machine() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<h1>Nos machines</h1>
|
2024-02-15 14:02:22 +01:00
|
|
|
<AutoGrid columnWidth='15rem'>
|
2024-02-15 11:30:35 +01:00
|
|
|
{machineMock.map(MachineCard)}
|
2024-02-15 14:02:22 +01:00
|
|
|
</AutoGrid>
|
2024-02-15 11:30:35 +01:00
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|