mirror of
https://github.com/better-auth/better-auth.git
synced 2026-08-01 10:50:40 -05:00
Co-authored-by: KinfeMichael Tariku <65047246+Kinfe123@users.noreply.github.com> Co-authored-by: Kinfe123 <kinfishtech@gmail.com>
8 lines
278 B
TypeScript
8 lines
278 B
TypeScript
import { DocsLayout } from "@/components/docs/docs";
|
|
import type { ReactNode } from "react";
|
|
import { docsOptions } from "../layout.config";
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return <DocsLayout {...docsOptions}>{children}</DocsLayout>;
|
|
}
|