"use client"; import { ReactNode } from "react"; // components import { CommandPalette } from "@/components/command-palette"; // wrappers import { AuthenticationWrapper } from "@/lib/wrappers"; // layout import { ProfileLayoutSidebar } from "./sidebar"; type Props = { children: ReactNode; }; export default function ProfileSettingsLayout(props: Props) { const { children } = props; return ( <>
{children}
); }