Skip to content

Commit 1792ea8

Browse files
committed
some changes
1 parent 74f27ce commit 1792ea8

File tree

5 files changed

+41
-5
lines changed

5 files changed

+41
-5
lines changed

Diff for: .vscode/launch.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "browser-preview",
9+
"name": "Browser Preview: Attach",
10+
"request": "attach"
11+
},
12+
{
13+
"type": "browser-preview",
14+
"request": "launch",
15+
"name": "Browser Preview: Launch",
16+
"url": "http://localhost:3000"
17+
}
18+
]
19+
}

Diff for: Components/input.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import React, { Component } from "react";
2+
3+
export default class Input extends Component {
4+
render() {
5+
return <div />;
6+
}
7+
}

Diff for: jsconfig.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"exclude": ["node_modules", "**/node_modules/*"],
3+
"compilerOptions": {
4+
"allowSyntheticDefaultImports": true,
5+
"target": "es2015",
6+
"checkJs": true,
7+
// "jsx": "react",
8+
"module": "commonjs"
9+
}
10+
}

Diff for: src/App.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import React, { Component } from 'react';
2-
import logo from './logo.svg';
3-
import './App.css';
1+
import React, { Component } from "react";
2+
import logo from "./logo.svg";
3+
import "./App.css";
44

55
class App extends Component {
66
render() {

Diff for: yarn.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -7901,7 +7901,7 @@ react-dev-utils@^7.0.1:
79017901
strip-ansi "4.0.0"
79027902
text-table "0.2.0"
79037903

7904-
7904+
react-dom@^16.8.1:
79057905
version "16.8.1"
79067906
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.1.tgz#ec860f98853d09d39bafd3a6f1e12389d283dbb4"
79077907
integrity sha512-N74IZUrPt6UiDjXaO7UbDDFXeUXnVhZzeRLy/6iqqN1ipfjrhR60Bp5NuBK+rv3GMdqdIuwIl22u1SYwf330bg==
@@ -7971,7 +7971,7 @@ [email protected]:
79717971
optionalDependencies:
79727972
fsevents "1.2.4"
79737973

7974-
7974+
react@^16.8.1:
79757975
version "16.8.1"
79767976
resolved "https://registry.yarnpkg.com/react/-/react-16.8.1.tgz#ae11831f6cb2a05d58603a976afc8a558e852c4a"
79777977
integrity sha512-wLw5CFGPdo7p/AgteFz7GblI2JPOos0+biSoxf1FPsGxWQZdN/pj6oToJs1crn61DL3Ln7mN86uZ4j74p31ELQ==

0 commit comments

Comments
 (0)