This commit is contained in:
Pierre Martin
2021-01-29 04:21:31 +01:00
parent d1ea0f902c
commit 457e7a09f6
10 changed files with 552 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
.App {
text-align: center;
text-align: left;
}
.App-logo {
@@ -14,7 +14,7 @@
}
.App-header {
background-color: #282c34;
background-color: black;
min-height: 100vh;
display: flex;
flex-direction: column;

View File

@@ -3,7 +3,7 @@ import logo from './logo.svg'
import './App.css'
function App() {
const [count, setCount] = useState(0)
const [count, setCount] = useState(5)
return (
<div className="App">

View File

@@ -3,6 +3,7 @@ import ReactDOM from 'react-dom'
import './index.css'
import App from './App'
console.log('hello');
ReactDOM.render(
<React.StrictMode>
<App />