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 { mongoId: string; } export const ShowInternalMongoCredentials = ({ mongoId }: Props) => { const { data } = api.mongo.one.useQuery({ mongoId }); return ( <>
Internal Credentials
); };