committed by
GitHub
7 changed files with 0 additions and 6574 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,13 +0,0 @@ |
|||||
{ |
|
||||
"private": true, |
|
||||
"description": "React example starter project", |
|
||||
"dependencies": { |
|
||||
"react": "17", |
|
||||
"react-dom": "17", |
|
||||
"react-scripts": "4.0.0" |
|
||||
}, |
|
||||
"scripts": { |
|
||||
"start": "react-scripts start", |
|
||||
"build": "react-scripts build" |
|
||||
} |
|
||||
} |
|
@ -1,26 +0,0 @@ |
|||||
<!DOCTYPE html> |
|
||||
<html lang="en"> |
|
||||
|
|
||||
<head> |
|
||||
<meta charset="utf-8"> |
|
||||
<title>React App</title> |
|
||||
</head> |
|
||||
|
|
||||
<body> |
|
||||
<noscript> |
|
||||
You need to enable JavaScript to run this app. |
|
||||
</noscript> |
|
||||
<div id="root"></div> |
|
||||
<!-- |
|
||||
This HTML file is a template. |
|
||||
If you open it directly in the browser, you will see an empty page. |
|
||||
|
|
||||
You can add webfonts, meta tags, or analytics to this file. |
|
||||
The build step will place the bundled scripts into the <body> tag. |
|
||||
|
|
||||
To begin the development, run `npm start` or `yarn start`. |
|
||||
To create a production bundle, use `npm run build` or `yarn build`. |
|
||||
--> |
|
||||
</body> |
|
||||
|
|
||||
</html> |
|
@ -1,5 +0,0 @@ |
|||||
import * as React from 'react'; |
|
||||
|
|
||||
export default function App() { |
|
||||
return <h1>Hello, world</h1>; |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
import * as React from 'react'; |
|
||||
import * as ReactDOM from 'react-dom'; |
|
||||
import './styles.css'; |
|
||||
|
|
||||
import App from './App'; |
|
||||
|
|
||||
const rootElement = document.getElementById('root'); |
|
||||
ReactDOM.render( |
|
||||
<React.StrictMode> |
|
||||
<App /> |
|
||||
</React.StrictMode>, |
|
||||
rootElement |
|
||||
); |
|
@ -1,3 +0,0 @@ |
|||||
body { |
|
||||
font-family: sans-serif; |
|
||||
} |
|
Loading…
Reference in new issue