mirror of
https://github.com/icereed/paperless-gpt.git
synced 2025-03-13 21:28:02 -05:00
14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
|
import React from 'react';
|
||
|
import DocumentProcessor from './components/DocumentProcessor';
|
||
|
import './index.css';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
return (
|
||
|
<div className="App">
|
||
|
<DocumentProcessor />
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|