- Device list fetched from /api/hardware/stats - Create/edit devices via modal form - Delete with confirmation dialog - Uses existing hardware CRUD API endpoints
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import type { Metadata } from "next"
|
|
import { HardwareClient } from "./hardware-client"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Hardware",
|
|
}
|
|
|
|
export default function HardwarePage() {
|
|
return <HardwareClient />
|
|
}
|