flow-chart

0.1.0 • Public • Published

flow-chart

is a collection of React components to draw an algorithm, workflow or process diagram

This package is at an early stage of development, contributions are welcome.

Installation

React is required as a peer dependency.

npm i react react-dom flow-chart

Synopsis

import React from 'react'
import ReactDOM from 'react-dom'
import FlowChart from 'flow-chart'
 
const diagram = {
  items: {
    terminator: {
      a: {
        x: 20,
        y: 20,
        height: 25,
        width: 80
      }
    }
  },
  height: 800,
  width: 680
}
 
ReactDOM.render(
  <FlowChart diagram={diagram} editable />,
  document.getElementById('root')
)

License

MIT

Dependents (0)

Package Sidebar

Install

npm i flow-chart

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • fibo