import { Button, Form, Input } from 'antd'; import { TextArea } from '../container/components/TextArea'; import clsx from 'clsx'; export const App = () => { const [form] = Form.useForm(); const onFinish = (values: any) => { console.log('Success:', values); }; const onSave = () => { // }; const isEdit = form.getFieldValue('id'); return (

Prompt JS Code Generate