({ children }: { children: JSX.Element })
| 83 | export { toast }; |
| 84 | |
| 85 | export const ChakraThemeProvider = ({ children }: { children: JSX.Element }) => { |
| 86 | return ( |
| 87 | <ChakraProvider theme={theme}> |
| 88 | <ToastContainer /> |
| 89 | {children} |
| 90 | </ChakraProvider> |
| 91 | ); |
| 92 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected