mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
chenge eslint disable rule
This commit is contained in:
parent
8b282ec67f
commit
dc59188c46
@ -21,7 +21,8 @@ storiesOf('Button', module)
|
|||||||
}))
|
}))
|
||||||
.add('with JSX', () => ({
|
.add('with JSX', () => ({
|
||||||
components: { MyButton },
|
components: { MyButton },
|
||||||
render(h) { // eslint-disable-line
|
// eslint-disable-next-line no-unused-vars
|
||||||
|
render(h) {
|
||||||
return <my-button onClick={this.action}>With JSX</my-button>;
|
return <my-button onClick={this.action}>With JSX</my-button>;
|
||||||
},
|
},
|
||||||
methods: { action: linkTo('clicked') },
|
methods: { action: linkTo('clicked') },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user