File size: 344 Bytes
5d86ca1
 
af71f44
5d86ca1
6bb08c4
 
5d86ca1
6bb08c4
 
 
 
 
5d86ca1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'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>
  );
};