import * as React from 'react'; import { Column, Dropdown, DropdownItem, Icon, } from '../web' const doNothing = (e: React.MouseEvent) => e.preventDefault(); export class DropdownExample extends React.Component { public render() { return (

Demo dropdowns

active not active
) } }