import Button from "@/components/Button"; import Notice from "@/components/Notice"; import { LINKS, ROOT_PAGES } from "@/lib/constants"; import { getUpsellURL } from "@/lib/utils"; import { useAppStore } from "@/store/store"; import { __ } from "@wordpress/i18n"; import { KeySquare } from "lucide-react"; const LicenseNotice = () => { const { setRootPage } = useAppStore(); return (
) }; export default LicenseNotice;