@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
15 lines (14 loc) • 444 B
JavaScript
import React from 'react';
import { Button, Popover } from '@momentum-ui/react-collaboration';
export default function PopoverContained() {
const tall = (
<span key="1" style={{ height: '3000px' }}>
Popover(height: 3000px)
</span>
);
return (
<Popover isContained content={tall} direction={'bottom-center'} popoverTrigger={'Click'}>
<Button id="contained" children="Tall" ariaLabel="Tall" />
</Popover>
);
}