import { faPlus } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import React, { useState } from "react"; import NewLinkModal from "./ModalContent/NewLinkModal"; type Props = { text?: string; }; export default function NoLinksFound({ text }: Props) { const [newLinkModal, setNewLinkModal] = useState(false); return (
{text || "You haven't created any Links Here"}
Start your journey by creating a new Link!