./src/App.js
import logo from "./logo.svg";
import "./App.css";
function App() {
return (
<div className="App">
<h1>Hello React!</h1>
</div>
);
}
export default App;
./src/App.css
.App {
display: flex;
align-items: center;
justify-content: center;
background-color: #e8d3d1;
height: 100vh;
}
↧