Neah_Front/components/flow/flow-frame.tsx
2025-04-08 18:24:36 +02:00

15 lines
314 B
TypeScript

"use client";
export function FlowFrame() {
return (
<div className="h-full w-full">
<iframe
src="https://lab.slm-lab.net/flow"
className="w-full h-full border-0"
allow="fullscreen"
title="Flow Dashboard"
style={{ display: 'block' }}
/>
</div>
);
}