728x90 function_component1 #16. React Hooks React Component ( Class Componet / Function Component ) Class Component 1. 더 많은 기능 사용 가능하다. 2. 코드가 더 길어지고 복잡해지고 성능이 조금 늘어지는 면이 있다. import React, {Component} from 'react' export default class Hello extends Component { render(){ return( hello my friends! ) } } Function Component 1. 한정적인 기능이 제공된다. 2. 코드가 간결해지고 성능이 빨라진다. import React from 'react' export default function Hello() { return ( hello my f.. 2021. 2. 14. 이전 1 다음 반응형