This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Card, Col, Divider, Form, Input, Row } from "antd"; | |
import { LocationSearchInput } from "./location-search"; | |
import { geocodeByAddress, getLatLng } from "react-places-autocomplete"; | |
import { FormComponentProps } from "antd/lib/form/Form"; | |
type Props = {} & FormComponentProps; | |
type State = { | |
address: string; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Input, Table } from "antd"; | |
import QueueAnim from "rc-queue-anim"; | |
import React from "react"; | |
const TextArea = Input.TextArea; | |
const AnimationWrapper = ({ ...props }) => <QueueAnim duration={1000} component="tbody" {...props} />; | |
const DataSource = [ | |
{ | |
id: "content-1", |