Dolor David Prince
fix: add use client directive to all components for static export
c9d42cc
Raw
History Blame Contribute Delete
339 Bytes
'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>
);
}