From b00c57c506ef7edfe22bc328390fdbb69ae8538f Mon Sep 17 00:00:00 2001 From: Daniel Saewitz Date: Mon, 19 Aug 2019 14:23:41 -0400 Subject: [PATCH] Fix Popover.md imports --- packages/core/src/components/popover/popover.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/components/popover/popover.md b/packages/core/src/components/popover/popover.md index a720c1426d..5c7c6724ee 100644 --- a/packages/core/src/components/popover/popover.md +++ b/packages/core/src/components/popover/popover.md @@ -82,7 +82,7 @@ See the [callout here](#core/components/button.props) for more details. ```tsx -const { Button, Intent, Popover, PopoverInteractionKind, Position } = "@blueprintjs/core"; +import { Button, Intent, Popover, PopoverInteractionKind, Position } from "@blueprintjs/core"; export class PopoverExample extends React.Component { public render() { @@ -205,7 +205,7 @@ The popover will re-open when `disabled` is set to `false`. #### Example controlled usage ```tsx -const { Popover, Position } = "@blueprintjs/core"; +import { Popover, Position } from "@blueprintjs/core"; export class ControlledPopoverExample extends React.Component<{}, { isOpen: boolean }> { public state = { isOpen: false };