react open file browser on click a div
import React from 'react'; const Content = () => { const handleClick = (e) => { const fileInput = document.getElementById('file'); fileInput.click(); }; const handleFileSelect = (e) => { const selectedFile = e.target.files[0]; console.log(selectedFile); }; return ( <div className="body-content"> <div className="add-media" onClick={handleClick}> <i className="plus icon"></i> <input type="file" id="file" style={{ display: 'none' }} onChange={handleFileSelect} /> </div> </div> ); }; export default Content; In this example, we use two separate functions to handle the click event on the add-media div and the selection of a file using the file input. The handleClick function is called when the user clicks the add-m...