import { ToggleVisibilityInput } from "@/components/shared/toggle-visibility-input"; 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"; import React from "react"; interface Props { mysqlId: string; } export const ShowInternalMysqlCredentials = ({ mysqlId }: Props) => { const { data } = api.mysql.one.useQuery({ mysqlId }); return ( <>
Internal Credentials
); };