Commit Again

This commit is contained in:
Sirin Puenggun 2023-06-26 19:13:57 +07:00
parent 718dc812f7
commit e0c0a8646f
4 changed files with 28 additions and 0 deletions

10
public/index.html Normal file
View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello world</title>
</head>
<body>
<div id="root"></div>
</body>
</html>

9
src/App.jsx Normal file
View File

@ -0,0 +1,9 @@
import React from 'react'
const App = () => {
return (
<div>App</div>
)
}
export default App

4
src/index.css Normal file
View File

@ -0,0 +1,4 @@
body {
background: black;
color: white;
}

5
src/index.js Normal file
View File

@ -0,0 +1,5 @@
import ReactDOM from 'react-dom'
import App from './App'
import "./index.css"
ReactDOM.render(<App/>, document.querySelector("#root"))