DefinitelyTyped/types/react-bootstrap/test
Neil Gentleman 7e5f12eec1 [react-bootstrap] fix Dropdown.Menu (#29452)
* [react-bootstrap] remove incorrect exports

several sub-components are exported in index.d.ts, when they are not
in the library itself.

should fail:
`import { DropdownMenu } from 'react-bootstrap';`

should succeed:
`import { Dropdown } from 'react-bootstrap';`
`import DropdownMenu from 'react-bootstrap/lib/DropdownMenu';`

* [react-bootstrap] fix Dropdown.Menu typing

DropdownMenu uses `export =`, so the import must use require, `import *`.

this matches the pattern in Carousel, FormControl, etc.
2018-10-10 12:54:46 -07:00
..
react-bootstrap-individual-components-tests.tsx [react-bootstrap] fix Dropdown.Menu (#29452) 2018-10-10 12:54:46 -07:00
react-bootstrap-tests.tsx