import React from 'react'; import { Button, Form, Input } from 'antd'; import { FormField } from 'semantic-ui-react'; interface Props { event?: any; } function CustomEventForm(props: Props) { return (
); } export default CustomEventForm;