import React from "react"; import { Form, Input } from "antd"; const { TextArea } = Input; interface BasicInformationProps { totalTargetCount: number; } const BasicInformation: React.FC = ({ totalTargetCount }) => { return (