import React from "react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { api } from "@/utils/api"; interface Props { postgresId: string; } export const ShowInternalPostgresCredentials = ({ postgresId }: Props) => { const { data } = api.postgres.one.useQuery({ postgresId }); return ( <>