ryepup/c4-lab

View on GitHub
src/shell/app.component.js

Summary

Maintainability
A
0 mins
Test Coverage
import template from './app.html'

export class AppController {
    constructor() {
        'ngInject'
        this.codeExpanded = true;
    }
}

export const name = "c4LabApp"
export const options = {
    template: template,
    controller: AppController
}