如何在 app.js 文件中渲染我的主页组件?
How to render my home component in the app.js file?
我正在尝试在 App.js 中渲染我的主页组件,如下所示:export function App() { return ( < Home /> ) }
但是它不显示我的内容。这是为什么?
我没有收到任何错误。
您可以像我在下面提到的那样导入和调用组件,
App.js
import './App.css';
import Home from './Components/Home'
function App() {
return (
<div className="App">
<Home />
</div>
);
}
export default App;
我正在尝试在 App.js 中渲染我的主页组件,如下所示:export function App() { return ( < Home /> ) }
但是它不显示我的内容。这是为什么?
我没有收到任何错误。
您可以像我在下面提到的那样导入和调用组件,
App.js
import './App.css';
import Home from './Components/Home'
function App() {
return (
<div className="App">
<Home />
</div>
);
}
export default App;