10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import ApiKeySettings from "@/components/settings/ApiKeySettings";
|
|
|
|
export default async function ApiKeysPage() {
|
|
return (
|
|
<div className="rounded-md border bg-background p-4">
|
|
<ApiKeySettings />
|
|
</div>
|
|
);
|
|
}
|