// 구조분해 사용 X
const SearchBar = (props) => {
  const { a, b, c } = props;
  ...
  
// 구조분해 사용 O
const SearchBar = ({ a, b, c }) => {
  ...