스니펫용 기본 컴포넌트 코드

컴포넌트 만들 때 스니펫으로 등록하려는 용도로 만든 기본 템플릿이다.

import React, { PropTypes, Component} from 'react';
const defaultProps = {
}
const propTypes = {
}

export default class 컴포넌트이름 extends Component{
      constructor(props){
            super(props);
      }
      render(){
            return(
                  <div></div>
            )
      }
}

컴포넌트이름.defaultProps = defaultProps;
컴포넌트이름.propTypes = propTypes;

 

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

0 댓글
Inline Feedbacks
View all comments
TOP