Shiftone에서 사용하는 React and JSX Design GuideLine 입니다.
💫 참조
react/no-multi-comp.react/jsx-filename-extension.Shiftone.jsx.react/jsx-pascal-case //bad
import shiftone from './Shiftone';
//good
import Shiftone from './Shiftone';
//bad
const ShiftoneItem = <Shiftone/>;
//good
const shiftoneItem = <Shiftone/>;