({
children,
...props
}: React.ComponentProps<typeof NextThemesProvider>)
| 4 | import * as React from "react"; |
| 5 | |
| 6 | export function ThemeProvider({ |
| 7 | children, |
| 8 | ...props |
| 9 | }: React.ComponentProps<typeof NextThemesProvider>) { |
| 10 | return <NextThemesProvider {...props}>{children}</NextThemesProvider>; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected