DashboardSettings.tsx28 lines · main
| 1 | import { |
| 2 | PageSection, |
| 3 | PageSectionContent, |
| 4 | PageSectionDescription, |
| 5 | PageSectionMeta, |
| 6 | PageSectionSummary, |
| 7 | PageSectionTitle, |
| 8 | } from 'ui-patterns/PageSection' |
| 9 | |
| 10 | import { DashboardSettingsToggles } from './DashboardSettingsToggles' |
| 11 | |
| 12 | export const DashboardSettings = () => { |
| 13 | return ( |
| 14 | <PageSection> |
| 15 | <PageSectionMeta> |
| 16 | <PageSectionSummary> |
| 17 | <PageSectionTitle id="dashboard">Dashboard</PageSectionTitle> |
| 18 | <PageSectionDescription> |
| 19 | Customize how the dashboard works on this browser and device. |
| 20 | </PageSectionDescription> |
| 21 | </PageSectionSummary> |
| 22 | </PageSectionMeta> |
| 23 | <PageSectionContent> |
| 24 | <DashboardSettingsToggles /> |
| 25 | </PageSectionContent> |
| 26 | </PageSection> |
| 27 | ) |
| 28 | } |