Welcome to the blog

Posts

My thoughts and ideas

  • 이미지 갤러리

    React 프로젝트 생성

    • 번들러, 바벨등 일일히 install하기 보다는 create react-app을 이용해 리액트 프로젝트를 생성했다. customizing이 조금 힘들수는 있지만, 간단한 프로젝트이기 때문에 무리 없을것 같다.
    yarn create react-app gallery --template typescript 
    • creat react-app 프로젝트의 기본 구조를 remind 겸 정리하고 가자.
      • node_modules : 설치된 외부 모듈을 import하면 node.js는 node_modules에서 해당 모듈을 찾는다.
      • ...
  • 계산기 만들기

    HTML/CSS 구현

    • html head
    <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>Simple Calculator</title> <meta name='viewport' content='width=device-width, initial-scale=1'> <link rel='stylesheet' type='text/css' media='screen' href='main.css'> <script