Files
sign/apps/web/src/app/(dashboard)/settings/token/page.tsx

18 lines
419 B
TypeScript
Raw Normal View History

2023-11-24 13:59:33 +02:00
import { ApiTokenForm } from '~/components/forms/token';
export default function ApiToken() {
2023-11-24 13:59:33 +02:00
return (
<div>
<h3 className="text-lg font-medium">API Tokens</h3>
2023-11-24 13:59:33 +02:00
<p className="text-muted-foreground mt-2 text-sm">
On this page, you can create new API tokens and manage the existing ones.
</p>
<hr className="my-4" />
<ApiTokenForm className="max-w-xl" />
2023-11-24 13:59:33 +02:00
</div>
);
}