Skip to content

Commit

Permalink
Inisialisasi rute-rute halaman manajemen data gudang (sensasi-apps#111
Browse files Browse the repository at this point in the history
  • Loading branch information
sensasi-delight committed Oct 2, 2024
1 parent 9e3c90e commit f2fd2b9
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export default function Page({
params: { uuid },
}: {
params: { uuid: string }
}) {
return (
<div>
<div>(Halaman Ubah Data Gudang) {uuid}</div>
</div>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Page() {
return (
<div>
<div>(Halaman Tambah Data Gudang)</div>
</div>
)
}
15 changes: 15 additions & 0 deletions src/app/(authenticated user)/data/warehouses/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import PageUrlEnum from '@/enums/page-url'
import { Button } from '@nextui-org/react'
import Link from 'next/link'

export default function Page() {
return (
<div>
<div>(Halaman Awal Manajemen Data Gudang)</div>

<Button href={PageUrlEnum.WAREHOUSE_CREATE} as={Link} color="primary">
Tambah data gudang
</Button>
</div>
)
}

0 comments on commit f2fd2b9

Please sign in to comment.