mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
dont include marko-widget example, in case user is not using them
This commit is contained in:
parent
2d53fb8e15
commit
79d53dbfea
@ -1,13 +0,0 @@
|
||||
module.exports = require('marko-widgets').defineComponent({
|
||||
template: require('./template.marko'),
|
||||
|
||||
getTemplateData(state, input) {
|
||||
return {
|
||||
name: input.name,
|
||||
};
|
||||
},
|
||||
|
||||
handleClick() {
|
||||
this.el.style.backgroundColor = 'yellow';
|
||||
},
|
||||
});
|
@ -1,4 +0,0 @@
|
||||
<div w-bind
|
||||
w-on-click="handleClick">
|
||||
Hello ${data.name}!
|
||||
</div>
|
@ -1,16 +1,4 @@
|
||||
import { storiesOf } from '@storybook/marko';
|
||||
|
||||
import { withKnobs, text } from '@storybook/addon-knobs';
|
||||
import Welcome from './components/welcome/index.marko';
|
||||
import MarkoWidgetHello from './components/hello/index.marko';
|
||||
|
||||
storiesOf('Welcome', module).add('welcome', () => Welcome.renderSync({}));
|
||||
|
||||
storiesOf('Hello (Marko Widget)', module)
|
||||
.addDecorator(withKnobs)
|
||||
.add('Simple', () => {
|
||||
const name = text('Name', 'John Doe');
|
||||
return MarkoWidgetHello.renderSync({
|
||||
name,
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user