I am trying to include header.html file into my react application. I created component like below:
import React from 'react';
var Header =require('https://mydomain/files/header.htm');
export default Header;
and then import it into App.js but "failed to compile". Any idea how to include external html files to react js? Thanks.
Comments
Post a Comment