Files
ballistic-builder/src/app/providers.tsx

11 lines
152 B
TypeScript
Raw Normal View History

2024-11-20 16:37:54 -05:00
// app/providers.tsx
'use client';
export function Providers({ children }: { children: React.ReactNode }) {
return (
{children}
);
}