/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
core/src/components/segment-content/segment-content.tsx
17 строк
356 B
Tanner Reits
feat(segment-view): adds support for new `ion-segment-view` component (#29969)
05 ноя 2024, 00:10
Не верифицирован
05 ноя 2024, 00:10
89508fb
Код
Авторство
О чём код?
import type { ComponentInterface } from '@stencil/core'; import { Component, Host, h } from '@stencil/core'; @Component({ tag: 'ion-segment-content', styleUrl: 'segment-content.scss', shadow: true, }) export class SegmentContent implements ComponentInterface { render() { return ( <Host> <slot></slot> </Host> ); } }