import React, { useState } from 'react'; import {Form,Button} from "react-bootstrap"; function fileValidation(){ var fileInput = document.getElementById('file'); var filePath = fileInput.value; var allowedExtensions = /(.csv)$/i; if(!allowedExtensions.exec(filePath)){ alert('Please upload file having extensions .csv only.'); fileInput.value = ''; return false; } } function SubirArchivo(){ return(
); } export default SubirArchivo;