import { tag, WeElement, h, extractClass, classNames } from 'omi' import * as css from './index.scss' //@ts-ignore import '../theme.ts' interface Props { masonry: boolean, list: object } interface Data { } @tag('m-image-list') export default class ImageList extends WeElement{ static css = css static defaultProps = { } static propTypes = { masonry: Boolean, list: Object } render(props) { return ( ) } }