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