Spaces:
Build error
Build error
File size: 281 Bytes
b59aa07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import React from "react";
import { ApiKeysManager } from "#/components/features/settings/api-keys-manager";
function ApiKeysScreen() {
return (
<div className="flex flex-col grow overflow-auto p-9">
<ApiKeysManager />
</div>
);
}
export default ApiKeysScreen;
|