-
Notifications
You must be signed in to change notification settings - Fork 35
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
[이형준]sprint7 #209
The head ref may contain hidden characters: "React-\uC774\uD615\uC900-sprint7"
[이형준]sprint7 #209
Changes from all commits
aaf8707
79c7e0d
0d89643
3648242
72f6506
2346531
71c47bc
a6e8ec4
d863291
de8ad6a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
{ | ||
"files": { | ||
"main.css": "/static/css/main.f0f3ce1f.css", | ||
"main.js": "/static/js/main.7465973d.js", | ||
"main.css": "/static/css/main.f3ee4894.css", | ||
"main.js": "/static/js/main.f8b8e179.js", | ||
"static/media/img_home_top.png": "/static/media/img_home_top.ebda87f1b39094af7a56.png", | ||
"static/media/img_home_bottom.png": "/static/media/img_home_bottom.55f9b5712afe428c859e.png", | ||
"static/media/img_home_search.png": "/static/media/img_home_search.5edb17ff2d752ee28431.png", | ||
"static/media/img_home_items.png": "/static/media/img_home_items.7262bacba747d4f77351.png", | ||
"static/media/img_home_register.png": "/static/media/img_home_register.ea82fb5e2972aae5bdf7.png", | ||
"static/media/img_no_comments.png": "/static/media/img_no_comments.467270e26d3f117ad44a.png", | ||
"static/media/logo_with_typo.png": "/static/media/logo_with_typo.3a8ee6e8a55ab6341a7b.png", | ||
"index.html": "/index.html", | ||
"main.f0f3ce1f.css.map": "/static/css/main.f0f3ce1f.css.map", | ||
"main.7465973d.js.map": "/static/js/main.7465973d.js.map" | ||
"main.f3ee4894.css.map": "/static/css/main.f3ee4894.css.map", | ||
"main.f8b8e179.js.map": "/static/js/main.f8b8e179.js.map" | ||
}, | ||
"entrypoints": [ | ||
"static/css/main.f0f3ce1f.css", | ||
"static/js/main.7465973d.js" | ||
"static/css/main.f3ee4894.css", | ||
"static/js/main.f8b8e179.js" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!doctype html><html lang="ko"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico" type="image/x-icon"/><title>판다 마켓</title><meta property="og:title" content="판다마켓"/><meta property="og:type" content="website"/><meta property="og:url" content="https://leehj322-codeit.netlify.app/"/><meta property="og:discription" content="일상의 모든 물건을 거래해보세요"/><meta property="og:image" content="./preview_img.png"/><meta name="twitter:title" content="판다마켓"/><meta name="twitter:card" content="summary"/><meta name="twitter:url" content="https://leehj322-codeit.netlify.app/"/><meta name="twitter:description" content="일상의 모든 물건을 거래해보세요"/><meta name="twitter:image" content="./preview_img.png"/><script defer="defer" src="/static/js/main.7465973d.js"></script><link href="/static/css/main.f0f3ce1f.css" rel="stylesheet"></head><body><div id="root"></div></body></html> | ||
<!doctype html><html lang="ko"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico" type="image/x-icon"/><title>판다 마켓</title><meta property="og:title" content="판다마켓"/><meta property="og:type" content="website"/><meta property="og:url" content="https://leehj322-codeit.netlify.app/"/><meta property="og:discription" content="일상의 모든 물건을 거래해보세요"/><meta property="og:image" content="./preview_img.png"/><meta name="twitter:title" content="판다마켓"/><meta name="twitter:card" content="summary"/><meta name="twitter:url" content="https://leehj322-codeit.netlify.app/"/><meta name="twitter:description" content="일상의 모든 물건을 거래해보세요"/><meta name="twitter:image" content="./preview_img.png"/><script defer="defer" src="/static/js/main.f8b8e179.js"></script><link href="/static/css/main.f3ee4894.css" rel="stylesheet"></head><body><div id="root"></div></body></html> |
This file was deleted.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
This file was deleted.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import styled from "styled-components"; | ||
|
||
const BlueButton = styled.button` | ||
border: none; | ||
background-color: var(--brand-blue); | ||
color: var(--gray-00); | ||
text-align: center; | ||
font-weight: 600; | ||
|
||
&:disabled { | ||
background-color: var(--cool-gray-400); | ||
} | ||
`; | ||
|
||
export default BlueButton; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
깔끔하게 잘하셨어요! 👍 파라미터도 지금처럼 객체로 받으면
getProductComments
함수를 사용할 때 가독성이 올라가고, 확장성에 더 좋아요.