mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
11 lines
152 B
TypeScript
11 lines
152 B
TypeScript
|
|
// app/providers.tsx
|
||
|
|
'use client';
|
||
|
|
|
||
|
|
|
||
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
||
|
|
return (
|
||
|
|
|
||
|
|
{children}
|
||
|
|
|
||
|
|
);
|
||
|
|
}
|