({ children }: { children?: React.ReactNode })
| 1 | import * as React from "react"; |
| 2 | |
| 3 | export const ChartKitProvider = ({ children }: { children?: React.ReactNode }) => |
| 4 | <>{children}</>; |
| 5 | |
| 6 | export const useChartKitTheme = () => ({ mode: "light" }); |
| 7 |
nothing calls this directly
no outgoing calls
no test coverage detected