mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
12 lines
272 B
TypeScript
Executable File
12 lines
272 B
TypeScript
Executable File
import {Component} from '@angular/core';
|
|
|
|
/**
|
|
* @title Basic use of the tab group
|
|
*/
|
|
@Component({
|
|
selector: 'tab-group-basic-example',
|
|
templateUrl: 'tab-group-basic-example.html',
|
|
styleUrls: ['tab-group-basic-example.css'],
|
|
})
|
|
export class TabGroupBasicExample {}
|