Skip to content

Commit

Permalink
[fix] 검색 결과 에러 수정
Browse files Browse the repository at this point in the history
[fix] 검색 결과 에러 수정
  • Loading branch information
leechoiswim1 committed Aug 31, 2021
1 parent e2aa74a commit e56665f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/search/EmptySearch.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ import { searchActions } from "../../modules/search";
const EmptySearch = ({ history, searchResult }) => {
const dispatch = useDispatch();
console.log(searchResult);

return (
<>
<tr>
<td colspan="5"><p>검색결과가 없습니다.</p></td>
<td colSpan="5">
<p>검색결과가 없습니다.</p>
</td>
</tr>
</>
);
}
};

export default EmptySearch;
export default EmptySearch;

0 comments on commit e56665f

Please sign in to comment.