import { ScrollArea } from '../../../ui/scroll-area'; import type { TFunction } from 'i18next'; import type { Project } from '../../../../types/app'; import type { ReleaseInfo } from '../../../../types/sharedTypes'; import SidebarFooter from './SidebarFooter'; import SidebarHeader from './SidebarHeader'; import SidebarProjectList, { type SidebarProjectListProps } from './SidebarProjectList'; type SidebarContentProps = { isPWA: boolean; isMobile: boolean; isLoading: boolean; projects: Project[]; searchFilter: string; onSearchFilterChange: (value: string) => void; onClearSearchFilter: () => void; onRefresh: () => void; isRefreshing: boolean; onCreateProject: () => void; onCollapseSidebar: () => void; updateAvailable: boolean; releaseInfo: ReleaseInfo | null; latestVersion: string | null; onShowVersionModal: () => void; onShowSettings: () => void; projectListProps: SidebarProjectListProps; t: TFunction; }; export default function SidebarContent({ isPWA, isMobile, isLoading, projects, searchFilter, onSearchFilterChange, onClearSearchFilter, onRefresh, isRefreshing, onCreateProject, onCollapseSidebar, updateAvailable, releaseInfo, latestVersion, onShowVersionModal, onShowSettings, projectListProps, t, }: SidebarContentProps) { return (
); }