generated from Luis/nextjs-python-web-template
consistent naming & strucutre
This commit is contained in:
10
pkgs/ui/src/app/machines/edit/[name]/page.tsx
Normal file
10
pkgs/ui/src/app/machines/edit/[name]/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
interface DeviceEditProps {
|
||||
params: { name: string };
|
||||
}
|
||||
|
||||
export default function EditDevice(props: DeviceEditProps) {
|
||||
const {
|
||||
params: { name },
|
||||
} = props;
|
||||
return <div>{name}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user