import React, { useState } from "react"; import NewLinkModal from "./ModalContent/NewLinkModal"; import { useTranslation } from "next-i18next"; type Props = { text?: string; }; export default function NoLinksFound({ text }: Props) { const { t } = useTranslation(); const [newLinkModal, setNewLinkModal] = useState(false); return (
{text || "You haven't created any Links Here"}
{t("start_journey")}