import NewApiKeyButton from '@/components/admin/api/NewApiKeyButton'; import React, { useEffect, useState } from 'react'; import tw from 'twin.macro'; import AdminContentBlock from '@/components/admin/AdminContentBlock'; import Spinner from '@/components/elements/Spinner'; interface Key { id: number, } export default () => { const [ loading, setLoading ] = useState(true); const [ keys ] = useState([]); useEffect(() => { setTimeout(() => { setLoading(false); }, 500); }); return (

API Keys

Control access credentials for managing this Panel via the API.

{ loading ?
: keys.length < 1 ?
{'No

No items could be found, it's almost like they are hiding.

: null }
); };