mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
18 lines
370 B
TypeScript
18 lines
370 B
TypeScript
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;
|