12 lines
158 B
TypeScript
12 lines
158 B
TypeScript
|
|
import FirecrawlComponent from "./components/ingestion";
|
||
|
|
|
||
|
|
function App() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<FirecrawlComponent />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default App;
|