Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import {Component, ViewEncapsulation} from '@angular/core';
import {VERSION} from '@angular/flex-layout';
@Component({
selector: 'demo-root',
templateUrl: './app.component.html',
encapsulation: ViewEncapsulation.None
})
export class AppComponent {
version = VERSION.full;
}