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