Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

How to include header and footer html file in React

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