UNPKG

@wordpress/components

Version:
25 lines (22 loc) 458 B
/** * Internal dependencies */ import { CardBody, CardHeader } from '../../card'; import Button from '../../../button'; import { Popover } from '..'; export default { component: Popover, title: 'G2 Components (Experimental)/Popover', }; export const _default = () => { return ( <Popover trigger={ <Button>Click</Button> } visible placement="bottom-start" > <CardHeader>Go</CardHeader> <CardBody>Stuff</CardBody> </Popover> ); };