import React from 'react'; import { View, Text, ScrollView } from 'react-native'; import { SidebarNav } from './components/sidebar-nav'; const sidebarNavItems = [ { title: "Profile", href: "/setttings", }, { title: "Account", href: "/setttings/account", }, { title: "Appearance", href: "/setttings/appearance", }, { title: "Notifications", href: "/setttings/notifications", }, { title: "Display", href: "/setttings/display", }, ]; export default function SettingsLayout({ children }) { return ( Settings Manage your account settings and set e-mail preferences. {children} ); }