blob: 1c3718d6b34f784261311991440de3165bde5ee2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import ApiKeySettings from "@/components/settings/ApiKeySettings";
export default async function ApiKeysPage() {
return (
<div className="rounded-md border bg-background p-4">
<ApiKeySettings />
</div>
);
}
|