styles: add spacing

This commit is contained in:
unknown
2021-09-14 17:15:40 +07:00
parent ff5deb2312
commit d6f0ef298d
9 changed files with 61 additions and 40 deletions

16
pages/notifications.tsx Normal file
View File

@@ -0,0 +1,16 @@
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;