2024-06-14 12:07:20 +00:00
|
|
|
import { Layout, LayoutContent, LayoutHeader } from "@/components";
|
|
|
|
|
import { PropsWithChildren } from "react";
|
2024-08-09 18:12:47 +00:00
|
|
|
import { SettingsProvider } from "./SettingsContext";
|
2024-06-14 12:07:20 +00:00
|
|
|
|
|
|
|
|
export const SettingsLayout = ({ children }: PropsWithChildren) => {
|
|
|
|
|
return (
|
2024-08-09 18:12:47 +00:00
|
|
|
<SettingsProvider>
|
|
|
|
|
<Layout>
|
|
|
|
|
<LayoutHeader />
|
|
|
|
|
<LayoutContent>{children}</LayoutContent>
|
|
|
|
|
</Layout>
|
|
|
|
|
</SettingsProvider>
|
2024-06-14 12:07:20 +00:00
|
|
|
);
|
|
|
|
|
};
|