Files
commerce/pages/demo.tsx
2021-09-14 17:53:54 +07:00

14 lines
362 B
TypeScript

import { Layout } from 'src/components/common';
import { NotificationEmptyPage, NotificationHeading, NotificationBreadcrumb } from 'src/components/modules/Notification';
export default function Demo() {
return (
<>
<NotificationBreadcrumb />
<NotificationHeading />
<NotificationEmptyPage />
</>
)
}
Demo.Layout = Layout