Shiftone에서 사용하는 React and JSX Design GuideLine 입니다.

💫 참조

Style Guide

Basic Rules

Naming

    //bad
    import shiftone from './Shiftone';

    //good
    import Shiftone from './Shiftone';

    //bad
    const ShiftoneItem = <Shiftone/>;

    //good
    const shiftoneItem = <Shiftone/>;

Methods