From 52deaaf3e19dd1c8ef1a4989522bbd9ad7a1ea7e Mon Sep 17 00:00:00 2001 From: Matt Stern Date: Wed, 15 Sep 2021 15:58:18 -0700 Subject: [PATCH] chore(docs): fix storysource for UncontrolledPopover Due to a storybook bug, we need to add args to the story parameters in order to show the source. (https://github.com/storybookjs/storybook/issues/13362) --- stories/examples/PopoverUncontrolled.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stories/examples/PopoverUncontrolled.js b/stories/examples/PopoverUncontrolled.js index ebf33ec0..b3a46bc2 100644 --- a/stories/examples/PopoverUncontrolled.js +++ b/stories/examples/PopoverUncontrolled.js @@ -2,7 +2,7 @@ import React from 'react'; import { Button, UncontrolledPopover, PopoverHeader, PopoverBody } from 'reactstrap'; -export default function () { +const Example = (props) => { return (
); } + +export default Example;