summaryrefslogtreecommitdiff
path: root/src/common/contexts/UIProvider.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/contexts/UIProvider.tsx')
-rw-r--r--src/common/contexts/UIProvider.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/common/contexts/UIProvider.tsx b/src/common/contexts/UIProvider.tsx
new file mode 100644
index 0000000..683e39e
--- /dev/null
+++ b/src/common/contexts/UIProvider.tsx
@@ -0,0 +1,17 @@
+"use client";
+
+import { NextUIProvider } from "@nextui-org/react";
+
+type Props = {
+ children: React.ReactNode
+}
+
+const UIProvider = ({ children }: Props) => {
+ return (
+ <NextUIProvider>
+ {children}
+ </NextUIProvider>
+ )
+}
+
+export default UIProvider \ No newline at end of file