mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
11 lines
182 B
TypeScript
11 lines
182 B
TypeScript
'use client';
|
|
import { StackTheme } from "@stackframe/stack";
|
|
|
|
export default function Provider({ children }) {
|
|
return (
|
|
<StackTheme>
|
|
{children}
|
|
</StackTheme>
|
|
);
|
|
}
|