CodeMateApp / src /App.js
FrederickSundeep's picture
commit 9
4fa42d6
raw
history blame contribute delete
207 Bytes
// src/App.js
import React from 'react';
import FileUploadForm from './FileUploadForm';
function App() {
return (
<div className="App">
<FileUploadForm />
</div>
);
}
export default App;