Files
piazzaoptical.com/jsapp/Events.js
T
2022-03-23 14:44:28 -05:00

11 lines
193 B
JavaScript

var Events = function(){
return {
view: function(vnode){
return m('.events', [
m('h1.text-center', "Upcoming Events")
]);
}
};
};
export default Events;