mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-17 13:55:13 +00:00
12 lines
250 B
TypeScript
Executable File
12 lines
250 B
TypeScript
Executable File
import {Component} from '@angular/core';
|
|
|
|
/**
|
|
* @title Basic cards
|
|
*/
|
|
@Component({
|
|
selector: 'card-overview-example',
|
|
templateUrl: 'card-overview-example.html',
|
|
styleUrls: ['card-overview-example.css'],
|
|
})
|
|
export class CardOverviewExample {}
|