upd: cleaning

Deskripsi:
- mengganti routing search, notifikasi dan detail-features
- mengganti module search, notifikasi dan detail-feature

No Issues
This commit is contained in:
amel
2024-07-09 14:39:07 +08:00
parent b43ee91022
commit b512c09bf0
13 changed files with 20 additions and 49 deletions

View File

@@ -0,0 +1,15 @@
import { LayoutNavbarNew } from '@/module/_global'
import { Box, } from '@mantine/core'
import React from 'react'
import ListNotification from '../components/list_notification'
export default function ViewNotification() {
return (
<Box>
<LayoutNavbarNew back='/home' title='Notifikasi' menu={<></>} />
<Box p={20}>
<ListNotification />
</Box>
</Box>
)
}