(props: GraphProps)
| 12 | * This wrapper is used to render a graph provider. |
| 13 | */ |
| 14 | export function graphProviderWrapper(props: GraphProps): React.JSXElementConstructor<{ |
| 15 | children: React.ReactNode; |
| 16 | }> { |
| 17 | return function GraphProviderWrapper({ children }) { |
| 18 | return <GraphProvider {...props}>{children}</GraphProvider>; |
| 19 | }; |
| 20 | } |
| 21 | |
| 22 | interface Options { |
| 23 | paperProps?: PaperProps; |
no outgoing calls
no test coverage detected