라우트 작성(페이지, 링크를 타고 이동하는 경로)https://www.npmjs.com/package/react-router-dom react-router-domDeclarative routing for React web applications. Latest version: 7.5.2, last published: 3 days ago. Start using react-router-dom in your project by running `npm i react-router-dom`. There are 23706 other projects in the npm registry using react-router-dom.www.npmjs.comhttps://www.npmjs.com/package/@types/rea..
기본 컴포넌트 작성title 컴포넌트// Title.tsximport styled from "styled-components";import { ColorKey, HeadingSize } from "../../style/theme";interface Props{ children : React.ReactNode; size: "large"| "medium" | "small"; color?: ColorKey;}function Title({children, size, color}: Props) { return( {children} );}const TitleStyle = styled.h1>`font-size: ${({theme, size}) => the..
