taffy-coustom-ui
Version:
12 lines (10 loc) • 310 B
text/typescript
import { Component, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
encapsulation: ViewEncapsulation.None
})
export class AppComponent {
values: number[] = [32, 11, 100, 49, 69, 20]
}