13 lines
274 B
TypeScript
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}</>
|
|
}
|