标签: reactjs
我需要使用react将HTML文件(home)加载到家庭JavaScript文件中。我不知道如何加载我的文件。请帮我解决这个问题。我在JS文件中使用了以下代码加载
import React from 'react'; import template from '../home/home.html'; const Home = () => { return ( template() ); }
导出默认主页;