import classNames from "classnames"; import useCurrentUser from "@/hooks/useCurrentUser"; import PersonalStatistics from "./PersonalStatistics"; import SearchBar from "./SearchBar"; import TagList from "./TagList"; interface Props { className?: string; } const HomeSidebar = (props: Props) => { const currentUser = useCurrentUser(); return ( ); }; export default HomeSidebar;