/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ import { SlidersHorizontal } from "lucide-react"; import { useTranslation } from "@plane/i18n"; import { Button } from "@plane/propel/button"; import { useHome } from "@/hooks/store/use-home"; import { useWorkspace } from "@/hooks/store/use-workspace"; export function HomePageHeader() { const { t } = useTranslation(); const { toggleWidgetSettings } = useHome(); const { currentWorkspace } = useWorkspace(); return (
Workspace Home
{currentWorkspace?.name ? `Стартовый экран для ${currentWorkspace.name}` : "Главная страница workspace"}
); }