import type { LayoutProps } from "@/core/types/common"; import type { ReactNode } from "react"; import HeaderLogoWrapper from "@/core/components/_layout/header/logo"; /** * Authorization layout. It's specifics to login/registration routes only.\ * Here is not any related to protected routes UI structure, the layout's routes have an authorization target only. * @param {LayoutProps & ParallelSlots<"sidebar">} props common {@link LayoutProps} props object containing `children` * @return {Promise} * @constructor */ export default async function Layout(props: LayoutProps): Promise { return (
{props.children}
); }