Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 삿포로 공항
- 리액트 이벤트 핸들링
- 일본스타벅스
- typescript react next
- nextjs
- typescript hooks
- nextjs typescript
- typescript next
- next typescript example
- create-next-app
- 카라쿠
- react
- react nextjs
- nextjs prettier
- nextjs redux
- react hooks
- NODE_PATH
- react hook typescript
- 카라쿠 커리
- typscript react
- nextjs redux example
- 일본 아메리카노 가격
- react 스프레드
- 후쿠오카 스타벅스
- nextjs eslint
- 신겐라멘
- react map
- 스타벅스
- codepen
- redux example
Archives
- Today
- Total
일안하고블로그
[ React ] JSX - Fragment 사용 본문
리액트 JSX - Fragment 사용
React에서 컴포넌트를 나누어서 개발을 할때 불필요하게 div를 반드시 감싸고 내부터 태그를 삽입 하다보면
불필요하게 DOM구조가 복잡해 진다고 느껴질때가 있습니다.
Fragment를 통해서 불필요한 div 랜더링을 생략 할 수 있습니다.
Fragment는 리액트 v16 이상에서 사용가능합니다.
import React, { Component, Fragment } from 'react';class FragmentTest extends Component {render() {return (<Fragment>테스트</Fragment>);}}export default FragmentTest;
간단하게 class를 하나 만들어 봤습니다.
사용법
1. 상단에 import {fragment} 추가.
import React, { Component, Fragment } from 'react';
2.return div형태에서 <Fragement> 태그 변경.
return (<Fragment>테스트</Fragment>);
'React > 기초' 카테고리의 다른 글
[ React ] 리액트 반복함수 - (map , slice , concat , spread 사용 예제) (1) | 2018.10.17 |
---|---|
[ React ] 리액트 이벤트 핸들링 기초 - input 입력 (0) | 2018.10.16 |
Comments