import React, { useRef } from "react"; import { Link, useLocation } from "react-router-dom"; import { UserProfile } from "@customTypes/Profile"; import styles from "./Sidebar.module.css"; import { SearchIcon, } from "../../images/Images"; import links from "./Links"; interface ContentProps { profile?: UserProfile; isSearching: boolean; selectedButtonIndex: number isSidebarOpen: boolean; handle_sidebar_click: (clicked_sidebar_idx: number) => void; }; const _Content: React.FC = ({ profile, isSearching, selectedButtonIndex, isSidebarOpen, handle_sidebar_click }) => { return (
); } export default _Content;