mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-02 19:40:35 -05:00
6 lines
221 B
TypeScript
6 lines
221 B
TypeScript
import { PosthogClientWrapper } from "../PosthogClientWrapper";
|
|
|
|
export default async function AuthLayout({ children }: { children: React.ReactNode }) {
|
|
return <PosthogClientWrapper>{children}</PosthogClientWrapper>;
|
|
}
|