Spaces:
Configuration error
Configuration error
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; |