admin管理员组文章数量:1344322
I'm trying to create a React app where I have two components:
- (placed on the left)
- (should take the remaining space on the right)
I want to use Flexbox to align both components horizontally, but for some reason: A. Sidebar appears, but Main is not rendering correctly B. Flexbox styles don’t seem to apply Why is my component not rendering properly, and how can I correctly use Flexbox to align these components side by side? CODE SNIPPETS:
- Main.jsx
import React from 'react'
import './Main.css'
const Main = () => {
return (
<div>
hello world
</div>
)
}
export default Main
- App.jsx
import React from 'react'
import Sidebar from './components/Sidebar'
import Main from './components/Main'
import Special from './components/special'
const App = () => {
return (
<>
<div className='star'>
<Main/>
<Sidebar/>
<Special/>
</div>
</>
)
}
export default App
- index.css
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: serif;
}
body{
min-height: 100vh;
display: flex;
}
本文标签: htmlReact component not getting rendered properlyStack Overflow
版权声明:本文标题:html - React component not getting rendered properly - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743761067a2534385.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论