({ children = null as ReactNode })
| 2 | import type { ReactNode } from "react" |
| 3 | |
| 4 | export const ThemeProvider = ({ children = null as ReactNode }) => ( |
| 5 | <ConfigProvider |
| 6 | theme={{ |
| 7 | token: { |
| 8 | colorPrimary: "#52c41a" |
| 9 | } |
| 10 | }}> |
| 11 | {children} |
| 12 | </ConfigProvider> |
| 13 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected