DashboardSettings.tsx28 lines · main
1import {
2 PageSection,
3 PageSectionContent,
4 PageSectionDescription,
5 PageSectionMeta,
6 PageSectionSummary,
7 PageSectionTitle,
8} from 'ui-patterns/PageSection'
9
10import { DashboardSettingsToggles } from './DashboardSettingsToggles'
11
12export 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}