diff --git a/web/src/components/HomeSidebar.tsx b/web/src/components/HomeSidebar.tsx index 38d3cf37..076ae9a0 100644 --- a/web/src/components/HomeSidebar.tsx +++ b/web/src/components/HomeSidebar.tsx @@ -1,13 +1,23 @@ +import classNames from "classnames"; import useCurrentUser from "@/hooks/useCurrentUser"; import PersonalStatistics from "./PersonalStatistics"; import SearchBar from "./SearchBar"; import TagList from "./TagList"; -const HomeSidebar = () => { +interface Props { + className?: string; +} + +const HomeSidebar = (props: Props) => { const currentUser = useCurrentUser(); return ( -