/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components-examples/material/button/button-disabled-interactive/button-disabled-interactive-example.ts
14 строк
461 B
Kristiyan Kostadinov
docs: remove standalone flag from examples
17 окт 2024, 17:40
17 окт 2024, 17:40
36f4cca
Код
Авторство
О чём код?
import {Component} from '@angular/core'; import {MatButton} from '@angular/material/button'; import {MatTooltip} from '@angular/material/tooltip'; /** * @title Interactive disabled buttons */ @Component({ selector: 'button-disabled-interactive-example', templateUrl: 'button-disabled-interactive-example.html', styleUrl: 'button-disabled-interactive-example.css', imports: [MatButton, MatTooltip], }) export class ButtonDisabledInteractiveExample {}