import SettingsLayout from "@/layouts/SettingsLayout"; import React, { useState } from "react"; import NewKeyModal from "@/components/ModalContent/NewKeyModal"; export default function Api() { const [newKeyModal, setNewKeyModal] = useState(false); return (

API Keys

Access Tokens can be used to access Linkwarden from other apps and services without giving away your Username and Password.

{newKeyModal ? ( setNewKeyModal(false)} /> ) : undefined}
); }