add excel upload or design the front end

This commit is contained in:
2026-02-21 17:39:39 +05:30
parent 20da415294
commit 592ddab03a
9 changed files with 268 additions and 17 deletions

21
src/admin/importExcel.jsx Normal file
View File

@@ -0,0 +1,21 @@
import React from 'react'
function Importexcel() {
return (
<>
<div className='w-50 border border rounded rounded-4 bg-white m-auto mt-5 p-3'>
<center><h3 className='text-primary'>Uplaod Excel File</h3></center>
<div className='form mt-3'>
<div className='form-control p-3'>
<input type="file" className='form-control' />
<button className='btn btn-primary form-control mt-3'>Upload</button>
</div>
</div>
</div>
</>
)
}
export default Importexcel