What is the best way to use iframe in react application, while having local html file for ifram src.
I need to have an iframe in my react application, but the iframe does not work with my local html file.
function ClusterDetails() {
return (
<iframe title='mytitle' src="../../data/index.html" width='500px' height='500px'></iframe>
);
}
export default ClusterDetails;