index.tsx 338 B

12345678910111213
  1. import { ContentSection } from '../components/content-section'
  2. import { NotificationsForm } from './notifications-form'
  3. export function SettingsNotifications() {
  4. return (
  5. <ContentSection
  6. title='Notifications'
  7. desc='Configure how you receive notifications.'
  8. >
  9. <NotificationsForm />
  10. </ContentSection>
  11. )
  12. }