rlcube / src /app /providers.tsx
imwithye's picture
fix frontend ui
af71f44
raw
history blame contribute delete
344 Bytes
'use client';
import { HeroUIProvider } from '@heroui/system';
import { ControlProvider } from '@/contexts/control-context';
export const Providers = ({ children }: { children: React.ReactNode }) => {
return (
<HeroUIProvider className="h-full w-full">
<ControlProvider>{children}</ControlProvider>
</HeroUIProvider>
);
};