import clsx from "clsx"; import useCurrentUser from "@/hooks/useCurrentUser"; import TagsSection from "../HomeSidebar/TagsSection"; import SearchBar from "../SearchBar"; import UserStatisticsView from "../UserStatisticsView"; interface Props { className?: string; } const TimelineSidebar = (props: Props) => { const currentUser = useCurrentUser(); return ( ); }; export default TimelineSidebar;