Files
ionic-framework/core/src/components/thumbnail/thumbnail.tsx
2018-09-14 18:47:00 +02:00

13 lines
249 B
TypeScript

import { Component, ComponentInterface } from '@stencil/core';
@Component({
tag: 'ion-thumbnail',
styleUrl: 'thumbnail.scss',
shadow: true
})
export class Thumbnail implements ComponentInterface {
render() {
return <slot></slot>;
}
}