mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 04:19:32 +00:00
6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
import type { ReactNode } from "react";
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return <div>{children}</div>;
|
|
}
|