import React, { useState } from 'react'; import { Form, Button, Card, Row, Col } from 'antd'; import ModelSelection from '../../../components/DropdownInput/ModelSelection'; import TextArea from 'antd/es/input/TextArea'; const defaultModel = "GPT35" function DemoCompliance() { const [form] = Form.useForm(); const [currModel, setCurrModel] = useState(defaultModel); const handleSubmit = () => { // Simulate modifying the prompt // TODO: handle submit here }; return (