dont include marko-widget example, in case user is not using them

This commit is contained in:
Neville Mehta 2018-05-19 19:19:28 -07:00
parent 2d53fb8e15
commit 79d53dbfea
3 changed files with 0 additions and 29 deletions

View File

@ -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';
},
});

View File

@ -1,4 +0,0 @@
<div w-bind
w-on-click="handleClick">
Hello ${data.name}!
</div>

View File

@ -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,
});
});