import { Layout, LayoutContent, LayoutHeader } from "@/components"; import { PropsWithChildren } from "react"; import { SettingsProvider } from "./SettingsContext"; export const SettingsLayout = ({ children }: PropsWithChildren) => { return ( {children} ); };