feat: more storybook stories
This commit is contained in:
15
components/smart/AccentModePicker.stories.js
Normal file
15
components/smart/AccentModePicker.stories.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import AccentModePicker from "./AccentModePicker.vue"
|
||||
|
||||
export default {
|
||||
component: AccentModePicker,
|
||||
title: "Smart/AccentModePicker",
|
||||
}
|
||||
|
||||
const Template = (_args, { argTypes }) => ({
|
||||
components: { AccentModePicker },
|
||||
props: Object.keys(argTypes),
|
||||
template: `<SmartAccentModePicker v-bind="$props" v-on="$props" />`,
|
||||
})
|
||||
|
||||
export const SmartAccentModePicker = Template.bind({})
|
||||
SmartAccentModePicker.args = {}
|
||||
Reference in New Issue
Block a user