mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-09 20:27:44 +00:00
* fix: light theme issue * fix: metadata issue * cleanup the layout * changelog-layout default clean up
5 lines
145 B
TypeScript
5 lines
145 B
TypeScript
import type { ReactNode } from "react";
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return <div>{children}</div>;
|
|
}
|