designfailure's picture
Upload 22 files
eb9b2b9 verified
raw
history blame contribute delete
501 Bytes
import React from 'react';
import GradioInterface from './ui/GradioInterface';
function App() {
return (
<div className="min-h-screen bg-gray-100">
<header className="bg-white shadow-sm">
<div className="container mx-auto px-4 py-4">
<h1 className="text-2xl font-bold text-gray-900">
InsurTech Agentic Workflow System
</h1>
</div>
</header>
<main>
<GradioInterface />
</main>
</div>
);
}
export default App;