Skip to content

Haneol/ddunaki-log-fe

Repository files navigation

🆕 설치하고 실행할 명령어

  • 노드 모듈 설치

    yarn
    
  • 시작

    yarn run dev
    

❗ 참고할 것들

  • styled-components 사용방법 (예시)

    import styled from "styled-components";
    
    const StyledBox = styled.div`
      border: 1px solid black;
      border-radius: 5px;
    `;
    const Box = ({ text }) => {
      return <StyledBox>{text}</StyledBox>;
    };
  • redux 사용할 때 도움되는 도구 redux devtools

    리덕스 개발자 도구로 현재 스토어의 상태를 개발자 도구에서 조회할 수 있는 프로그램입니다. 어떠한 액션을 했는지, 해당 액션으로 상태가 어떻게 변화했는지 확인할 수 있습니다.

    리덕스 데브툴 설치하기

    설치 후 터미널에 아래 명령어를 입력하여 다운 받은 후 실행한다면.

    npm install @redux-devtools/extension
    

    F12 를 눌러 개발자 도구를 켜보면 console, network 등의 항목 외에 새롭게 redux 라는 항목이 생긴 것을 확인할 수 있습니다.

    혹은 크롬 확장 프로그램을 눌러 확인할 수 있습니다.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages