mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
14 lines
362 B
TypeScript
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
|