mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-28 09:15:24 +02:00
11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
import { TemplateGenerator } from "@/components/dashboard/project/ai/template-generator";
|
|
|
|
interface Props {
|
|
environmentId: string;
|
|
projectName?: string;
|
|
}
|
|
|
|
export const AddAiAssistant = ({ environmentId }: Props) => {
|
|
return <TemplateGenerator environmentId={environmentId} />;
|
|
};
|