mirror of
https://github.com/Sosokker/SOS12.git
synced 2025-12-20 21:24:05 +01:00
Commit Again
This commit is contained in:
parent
718dc812f7
commit
e0c0a8646f
10
public/index.html
Normal file
10
public/index.html
Normal 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
9
src/App.jsx
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import React from 'react'
|
||||||
|
|
||||||
|
const App = () => {
|
||||||
|
return (
|
||||||
|
<div>App</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default App
|
||||||
4
src/index.css
Normal file
4
src/index.css
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
body {
|
||||||
|
background: black;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
5
src/index.js
Normal file
5
src/index.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import ReactDOM from 'react-dom'
|
||||||
|
import App from './App'
|
||||||
|
import "./index.css"
|
||||||
|
|
||||||
|
ReactDOM.render(<App/>, document.querySelector("#root"))
|
||||||
Loading…
Reference in New Issue
Block a user