main.jsx
index.html
MyStylesheet.css
import { createRoot } from 'react-dom/client';
import './MyStylesheet.css';
const Header = () => {
return (
<>
<h1>Hello Style!</h1>
<p>Add a little style!.</p>
</>
);
}
createRoot(document.getElementById('root')).render(
<Header />
);
<!doctype html>
<html lang="en">
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
body {
background-color: DodgerBlue;
color: white;
padding: 40px;
font-family: Sans-Serif;
text-align: center;
}