UNPKG

react-d3-dag

Version:

React component to create interactive D3 directed acyclic graphs (DAGs)

11 lines (10 loc) 337 B
import React from 'react'; interface TransitionGroupWrapperProps { enableLegacyTransitions: boolean; component: string; className: string; transform: string; children: React.ReactNode; } declare const TransitionGroupWrapper: (props: TransitionGroupWrapperProps) => JSX.Element; export default TransitionGroupWrapper;