blob: e87995832935e4868c8c9ae27588a16c1dd6aab3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { Button } from "@/components/ui/button";
import ApiKeySettings from "./components/ApiKeySettings";
export default async function Settings() {
return (
<div className="m-4 flex flex-col space-y-2 rounded-md border bg-white p-4">
<p className="text-2xl">Settings</p>
<ApiKeySettings />
</div>
);
}
|