1. jsx로 LikesBar를 지정하고 Style 컴포넌트를 분리하여 likes라는 Props를 스타일 컴포넌트로 넘겨주고 있는 상황. width: ${(props) => props.likes}%; 2. Props 를 넘겨 받는 이유: width 를 Likes 비율만큼 늘려줘야 하는 상황이기 때문에! 요로케 말입니다... 또가요 / 안가요 비율에 따라 움직이게 만들어야 하는 상황! 하지만 이렇게 코드를 두면 아래와 같은 콘솔 워닝이 나타났습니다! styled-components: it looks like an unknown prop "likes" is being sent through to the DOM, which will likely trigger a React console error. If yo..