index.tsx 332 B

12345678910111213
  1. import { DisplayForm } from './display-form'
  2. import ContentSection from '../components/content-section'
  3. export default function SettingsDisplay() {
  4. return (
  5. <ContentSection
  6. title='Display'
  7. desc="Turn items on or off to control what's displayed in the app."
  8. >
  9. <DisplayForm />
  10. </ContentSection>
  11. )
  12. }