feat: notificationpage mobile

This commit is contained in:
unknown
2021-09-14 16:04:19 +07:00
parent d99abb51e9
commit 3c8f01fa7e
10 changed files with 242 additions and 0 deletions

13
pages/notification.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import { Layout } from 'src/components/common';
import { NotificationPage } from 'src/components/modules/Notification';
const Notification = () => {
return (
<NotificationPage />
)
}
Notification.Layout = Layout
export default Notification;