forked from janus-idp/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from RichardW98/notification-header
notification header
- Loading branch information
Showing
2 changed files
with
14 additions
and
22 deletions.
There are no files selected for viewing
32 changes: 12 additions & 20 deletions
32
plugins/orion/src/components/notification/Notification.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,21 @@ | ||
import React from 'react'; | ||
import { | ||
Content, | ||
ContentHeader, | ||
Page, | ||
SupportButton, | ||
} from '@backstage/core-components'; | ||
import { ContentHeader, SupportButton } from '@backstage/core-components'; | ||
import { Grid } from '@material-ui/core'; | ||
import { PageHeader } from '../PageHeader'; | ||
import { NotificationList } from './NotificationList'; | ||
import { ParodosPage } from '../ParodosPage'; | ||
|
||
export const Notification = () => { | ||
return ( | ||
<Page themeId="tool"> | ||
<PageHeader /> | ||
<Content> | ||
<ContentHeader title="Notification"> | ||
<SupportButton title="Need help?">Lorem Ipsum</SupportButton> | ||
</ContentHeader> | ||
<br /> | ||
<Grid container direction="row"> | ||
<Grid item xs={12}> | ||
<NotificationList /> | ||
</Grid> | ||
<ParodosPage> | ||
<ContentHeader title="Notification"> | ||
<SupportButton title="Need help?">Lorem Ipsum</SupportButton> | ||
</ContentHeader> | ||
<br /> | ||
<Grid container direction="row"> | ||
<Grid item xs={12}> | ||
<NotificationList /> | ||
</Grid> | ||
</Content> | ||
</Page> | ||
</Grid> | ||
</ParodosPage> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters