FrontEnd/React
[React] 리액트 기본 예제 (클래스 선언, 객체할당)
2022. 1. 26. 23:11반응형
예제 1. 변수 선언해서 뿌리기. (Function Component)
src/App.js
import logo from './logo.svg';
import './App.css';
import { useEffect } from 'react';
function App() {
let a = 'hello';
return (
<div className="App">
Learn React {a}
</div>
);
}
export default App;
출력화면
예제 2. 클래스 선언 후, 객체 할당해서 웹에 뿌리기
src/App.js
import './App.css';
import {Player} from './player.js';
function App() {
let p = new Player("HongilDong");
return (
<div className="App">
이름은 : {p.name} <br></br>
이름은(getName) : {p.getName()} <br></br>
값은 : {p.a} <br></br>
</div>
);
}
export default App;
src/player.js
export class Player {
constructor(name) {
this.name = name;
this.a = 3;
}
getName() {
return this.name;
}
}
출력화면
반응형
'FrontEnd > React' 카테고리의 다른 글
kakao 공유하기 구현하기 (0) | 2021.04.23 |
---|---|
[React] React 기초 문법 (0) | 2021.04.20 |
[React] Ubuntu에 ReactJS 설치 (0) | 2021.03.10 |
[React] 5분 안에 React.js로 Hello world 띄우기 (0) | 2021.03.07 |
error An unexpected error occurred: "https://registry.npmjs.org/react: unable to verify the first certificate". 오류 (0) | 2020.02.13 |