DashboardSettings.tsx 750 B

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