import {Presentation, Slide} from 'vue-slides'
const MyPresentation = {
name: 'my-presentation',
render(h) {
return (
<Presentation>
<Slide>
<Title>hello world</Title>
<SubTitle>a quick intro to vue-slides</SubTitle>
</Slide>
</Presentation>
)
}
}