컴포넌트 만들 때 스니펫으로 등록하려는 용도로 만든 기본 템플릿이다.
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;