D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
notifications
/
Filename :
NotificationsPage.tsx
back
Copy
import React from 'react'; import { Page } from 'app/core/components/Page/Page'; import { StoredNotifications } from './StoredNotifications'; export const NotificationsPage = () => { return ( <Page navId="profile/notifications"> <Page.Contents> <StoredNotifications /> </Page.Contents> </Page> ); }; export default NotificationsPage;