A highly customizable React component for building interactive network diagrams.
Coming soon under the MIT licence | Use it now on isoflow.io
Migration to open-source: ██░░░░░░░░░
Note: Isoflow is currently not production ready. To view it's current state of development:
npm install isoflow
import Isoflow from 'isoflow';
const App = () => (
<Isoflow
height={500}
scene={{
icons: [],
nodes: [],
connectors: [],
groups: []
}}
>
)
If using Next.js, make sure you only import Isoflow in the browser:
const Isoflow = dynamic(() => import("isoflow"), {
ssr: false,
});
Isoflow is MIT licensed (see ./LICENSE).