ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
13 lines (10 loc) • 351 B
text/typescript
import { Component } from '@angular/core';
let doc = require('html-loader!markdown-loader!./getting-started.md');
({
selector: 'getting-started',
templateUrl: './getting-started.template.html'
})
export class GettingStartedComponent {
public name:string = `Bootstrap components for Angular`;
public doc:string = doc;
}