import React, { useState } from 'react'; import Popover from 'components/popover'; import Input from 'components/input'; type IProps = {}; const Component = function(props: IProps) { const [tip, setTip] = useState(''); const [visible, setVisible] = useState(true); return (