14 lines
295 B
TypeScript
14 lines
295 B
TypeScript
import { AutoGrid } from ':components/AutoGrid.tsx'
|
|
import { MachineCard, machineMock } from ':components/MachineCard.tsx'
|
|
|
|
export default function Machine() {
|
|
return (
|
|
<>
|
|
<h1>Nos machines</h1>
|
|
<AutoGrid columnWidth='15rem'>
|
|
{machineMock.map(MachineCard)}
|
|
</AutoGrid>
|
|
</>
|
|
)
|
|
}
|