File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1+ # editorconfig.org
2+ root = true
3+
4+ [* ]
5+ charset = utf-8
6+ end_of_line = lf
7+ indent_size = 2
8+ indent_style = space
9+ insert_final_newline = true
10+ trim_trailing_whitespace = true
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import type { StorybookViteConfig } from "@storybook/builder-vite";
22
33const config : StorybookViteConfig = {
44 stories : [
5- "../src/**/*.mdx" ,
65 "../src/**/*.stories.@(js|jsx|ts|tsx)" ,
76 "../examples/*.stories.@(js|jsx|ts|tsx)" ,
87 ] ,
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export const Primary: Story = {
2727
2828export const ChipGroup : StoryGroup = {
2929 render : ( args ) => (
30- < Chip . Group { ...args } >
30+ < Chip . Group multiple { ...args } >
3131 < Chip . Item value = "react" > React</ Chip . Item >
3232 < Chip . Item value = "ng" > Angular</ Chip . Item >
3333 < Chip . Item value = "svelte" > Svelte</ Chip . Item >
You can’t perform that action at this time.
0 commit comments