You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
334 B
JavaScript

import _Home from './_Home.js';
import Carousel from './Carousel.js';
var Home = function(){
return {
view: function(vnode){
return m('.home', [
//m('h1', "Piazza Optical Home Page"),
m(Carousel, {images: _Home.carousel_images, name: 'home-carousel'})
]);
}
};
};
export default Home;