mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
13 lines
231 B
TypeScript
13 lines
231 B
TypeScript
import { Component, ComponentInterface } from '@stencil/core';
|
|
|
|
@Component({
|
|
tag: 'ion-row',
|
|
styleUrl: 'row.scss',
|
|
shadow: true
|
|
})
|
|
export class Row implements ComponentInterface {
|
|
render() {
|
|
return <slot></slot>;
|
|
}
|
|
}
|