@wordpress/components
Version:
UI components for WordPress.
25 lines (22 loc) • 458 B
JavaScript
/**
* 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>
);
};