From 739e8821892e5eb292632670784c584370449d47 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 30 Aug 2022 16:55:56 +0900 Subject: [PATCH 1/3] Update README.md updated example code from README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9afd61..04b0f8b 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Storybook uses a reference to the `module` global provided by webpack to facilit If you'd prefer to use the newer [Component Story Format](https://storybook.js.org/docs/formats/component-story-format/), you can do that as well: ```reason -open BsStorybook; +open Storybook; let default = CSF.make(~title="My CSF Story", ()); From 381a55962eb09fa081e770be782c2a6c659cadca Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 30 Aug 2022 18:04:06 +0900 Subject: [PATCH 2/3] Update README.md updated example code from README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 04b0f8b..bd7fd7b 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Note that in the above example, we're assuming the convention of each module con Here's a basic story in its entirety: ```reason -open BsStorybook.Story; +open Storybook.Story; let _module = [%bs.raw "module"]; From 37d15c46942a9edb929a40d50dcbe4c6d312c917 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 30 Aug 2022 19:39:42 +0900 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd7fd7b..fa5ce0d 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ type selectOptions = { two: string }; -let options : Knobs.selectConfig(selectOptions) = { +let options : Knobs.selectConfig = { one: "Hello", two: "Hi" };