File size: 501 Bytes
eb9b2b9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;