Examples
Misc
ReactFlowProvider

ReactFlowProvider

If you are working with multiple flows on a page or if you are using a client side router you need to wrap each flow with a ReactFlowProvider so that every flow has its own store instance. Using a ReactFlowProvider is also mandatory if you want to access the internal state outside of the ReactFlow component.

export default function App() {
  const data: string = "world"

  return <h1>Hello {data}</h1>
}

Read-only