mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
17 lines
433 B
TypeScript
17 lines
433 B
TypeScript
import React from 'react';
|
|
import { Layout } from 'src/components/common';
|
|
import { NotificationBreadcrumb, NotificationHeading, NotificationPage } from 'src/components/modules/Notification';
|
|
|
|
const Notification = () => {
|
|
return (
|
|
<>
|
|
<NotificationBreadcrumb />
|
|
<NotificationHeading />
|
|
<NotificationPage />
|
|
</>
|
|
)
|
|
}
|
|
|
|
Notification.Layout = Layout
|
|
|
|
export default Notification; |