|
define(['./barbells/data'], function(data) {
|
|
console.log('blep');
|
|
|
|
return {
|
|
oninit: function(vnode) {
|
|
},
|
|
view: function(vnode) {
|
|
return m('section.barbells', {units: 'lbs', items: [
|
|
{type: 'olympic-bar', left: [
|
|
'plate=45'
|
|
], right: [
|
|
'plate=45'
|
|
]}
|
|
]})
|
|
}
|
|
}
|
|
});
|