Skip to content

Commit

Permalink
remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
rajeshbolisetty committed Dec 15, 2023
1 parent 1d778b8 commit 25a971e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
import React from 'react';
import './App.css';
import FileUpload from './components/fileUpload/fileupload';
import MButton from './components/button/button'

function App() {
return (
<div className="App mt-5">
<h1>Combine multiple PDFs into one</h1>
<p>Merge PDFs online without downloading additional software.</p>
<div className="border rounded ms-5 me-5">
<FileUpload text="upload files" className="mt-5 mb-5" fileFormats="application/pdf" />
<FileUpload
text="upload files"
className="mt-5 mb-5"
fileFormats="application/pdf"
/>
</div>
</div>
);
Expand Down

0 comments on commit 25a971e

Please sign in to comment.