21 lines
603 B
JavaScript
21 lines
603 B
JavaScript
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 |