1. Fragment
import React, { Component, Fragment } from 'react'; class App extends Component { render(){ return( <Fragment> <div> </div> <div> </div> <div> </div> <Fragment> ); } } <Fragment> |
2. const, let
const variable = 'value'; {//함수 단위 scope} let variable = 'value'; {//블록 단위 scope} |
'ITdata > React' 카테고리의 다른 글
React - style, css (0) | 2019.07.06 |
---|---|
React - 조건(IIFE, Arrow, 삼항연산, AND) (0) | 2019.07.06 |
React - index.js (0) | 2019.07.06 |
React - App.js (0) | 2019.07.06 |
(CentOS7/Linux) create-react-app (0) | 2019.07.05 |