| 'use client'; | |
| "use client"; | |
| import { | |
| ReactFlow, | |
| Background, | |
| Controls, | |
| MiniMap | |
| } from "reactflow"; | |
| import "reactflow/dist/style.css"; | |
| export default function ProductionLowCode(){ | |
| return( | |
| <div style={{width:"100%",height:"100vh"}}> | |
| <ReactFlow nodes={[]} edges={[]} fitView> | |
| <MiniMap/> | |
| <Controls/> | |
| <Background/> | |
| </ReactFlow> | |
| </div> | |
| ); | |
| } | |