import React from "react"; import { FormField, FormItem, FormLabel, FormControl, FormMessage, FormDescription, } from "@/components/ui/form"; import { Input } from "@/components/ui/input"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { SonDetailsFormProps } from "@/lib/types"; import { Switch } from "@/components/ui/switch"; export function SonDetailsForm({ form }: SonDetailsFormProps) { return ( Son Details ( Son Name Give your Son a unique and descriptive name. )} /> ( Trigger Choose the event that will trigger this Son. )} /> ( Delay Set a delay before the Son executes its actions. Use format like "30m" for 30 minutes, "2h" for 2 hours, "1d" for 1 day, or "1w" for 1 week. )} /> (
Enabled Enable or disable this Son.
)} />
); }