차곡차곡

[osod] 2023년 2월 1일 수요일 본문

토이 프로젝트/osod

[osod] 2023년 2월 1일 수요일

sohy 2023. 2. 2. 01:07

오늘 한 것

  • 초기 세팅 (api, image, font, color, router 폴더 나눔)

  • 헤더 찔끔

 

참고

npx create-react-app [프로젝트명] --template typescript
import React from 'react';

type GreetingsProps = {
  name: string;
  mark: string;
};

const Greetings = ({ name, mark }: GreetingsProps) => (
  <div>
    Hello, {name} {mark}
  </div>
);

Greetings.defaultProps = {
  mark: '!'
};

export default Greetings;
# with npm
npm install --save styled-components
# with yarn
yarn add styled-components

# with npm
npm i --save-dev @types/styled-components
# with yarn
yatn add --dev @types/styled-components

 

 


 

타입스크립트로 하려니 괜찮은 듯 어렵다 ,,,

 

 

Comments