From 36469333a20ac5d52d357331dab9b5ab4d46bae1 Mon Sep 17 00:00:00 2001 From: Sarah Date: Thu, 2 Dec 2021 16:09:57 -0500 Subject: [PATCH] Fix typo. --- docs/writing-stories/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing-stories/introduction.md b/docs/writing-stories/introduction.md index 6002d76ba59c..676cccbfb088 100644 --- a/docs/writing-stories/introduction.md +++ b/docs/writing-stories/introduction.md @@ -136,7 +136,7 @@ Refine this pattern by introducing `args` for your component's stories. It reduc
-💡 Note: Template.bind({}) is a standard JavaScript techique for making a copy of a function. We copy the Template so each exported story can set its own properties on it. +💡 Note: Template.bind({}) is a standard JavaScript technique for making a copy of a function. We copy the Template so each exported story can set its own properties on it.
By introducing args into your component's stories, you're not only reducing the amount of code you need to write, but you're also decreasing data duplication, as shown by spreading the `Primary` story's args into the other stories.