added the proper class name

This commit is contained in:
jonniebigodes 2020-07-30 16:04:42 +01:00
parent 6c53ed0444
commit f80fcbd21e
2 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ Secondary.args = {
}
```
<div class=".aside">
<div class="aside">
Note that if you are doing the above often, you may want to consider using [component-level args](#component-args).
@ -137,7 +137,7 @@ LoggedIn.args = {
export const parameter = { passArgsFirst : false }.
```
<div class=".aside">
<div class="aside">
Note that `args` is still available as a key on the context.

View File

@ -231,7 +231,7 @@ export const ManyItems = (args) => (
);
```
<div class=".aside">
<div class="aside">
Note that there are disadvantages in writing stories like this as you cannot take full advantage of the args mechanism and composing args as you build more complex composite components. For more discussion, set the [multi component stories](../workflows/stories-for-multiple-components) workflow article.