Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[박지민] sprint8 #553

Open
wants to merge 11 commits into
base: main
Choose a base branch
from

Conversation

JiminN2
Copy link
Collaborator

@JiminN2 JiminN2 commented May 24, 2024

요구사항

기본

  • [x]
  • []
  • []

심화

  • [x]
  • []

주요 변경사항

  • sprint7 에 타입스크립트 적용했습니다. 처음에 타입스크립트 템플릿 파일에 가지고 와서 했습니다.

스크린샷

image

멘토에게

  • 감사합니다!
  • 셀프 코드 리뷰를 통해 질문 이어가겠습니다.

@JiminN2 JiminN2 requested a review from domuk-k May 24, 2024 16:21
Copy link
Collaborator

@domuk-k domuk-k left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다 ts 프로젝트를 새로 만드는 방향을 선택하시고, 새로운 프로젝트에 prettier 도 적용해보셨군요 👍

  • npm run start 스크립트로 개발서버에서 빌드에러, 런타임 에러없이 동작하는지 확인하시면서 진행하시면 좋겠습니다. 간단한 기능이라도 명확히 동작하는지 스스로 확인하시면서 진행하시는 게 효과적입니다.
  • package.json에 타입체크하는 스크립트를 추가하셔서 활용해보시면 좋겠습니다.

"scripts": {
"tsc": "tsc --noEmit"
}

@@ -4,11 +4,13 @@ import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

const root = ReactDOM.createRoot(document.getElementById('root'));
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"as" 키워드로 type assertion 하셨군요. 👍

type assertion을 사용하면, 타입추론을 덮어쓸 수 있으니, 타입에러는 피할 수 있지만, 런타임에, 즉 동작중에는 충분히 다른값이 들어갈 수 있습니다. 주의해주세요

Comment on lines +46 to +47
<ItemTitle>{getProduct.name}</ItemTitle>
<ItemPrice>{getProduct.price.toLocaleString()}원</ItemPrice>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

참조가 없어서 렌더링, 빌드자체가 안되고 있습니다ㅠ 개발서버에서 동작하는지 확인해주세요

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants