mirror of
https://github.com/soconnor0919/hristudio.git
synced 2025-12-11 06:34:44 -05:00
- Add plugin store system with dynamic loading of robot actions - Implement plugin store API routes and database schema - Update experiment designer to support plugin-based actions - Refactor environment configuration and sidebar navigation - Improve authentication session handling with additional user details - Update Tailwind CSS configuration and global styles - Remove deprecated files and consolidate project structure
24 lines
614 B
TypeScript
24 lines
614 B
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "next-themes";
|
|
import { StudyProvider } from "./study-provider";
|
|
import { PluginStoreProvider } from "./plugin-store-provider";
|
|
import { Toaster } from "~/components/ui/toaster";
|
|
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<ThemeProvider
|
|
attribute="class"
|
|
defaultTheme="system"
|
|
enableSystem
|
|
disableTransitionOnChange
|
|
>
|
|
<PluginStoreProvider>
|
|
<StudyProvider>
|
|
{children}
|
|
<Toaster />
|
|
</StudyProvider>
|
|
</PluginStoreProvider>
|
|
</ThemeProvider>
|
|
);
|
|
}
|