Popover

A simple popup.

<Button	isSecondary onClick={ (e) => setVisible(!visible) }>
	Toggle Popover!
	{ visible && (
		<Popover>
			<div style={{padding: "16px"}}>
				Popover is toggled!
			</div>
		</Popover>
	) }
</Button>
GitHub URL
Classification

Category

Components