picoclaw/web/frontend/src/app-providers.tsx

13 lines
274 B
TypeScript

import type { ReactNode } from "react"
import { useHighlightTheme } from "./hooks/use-highlight-theme"
interface AppProvidersProps {
children: ReactNode
}
export function AppProviders({ children }: AppProvidersProps) {
useHighlightTheme()
return <>{children}</>
}