You've already forked angular2-template-loader
mirror of
https://github.com/encounter/angular2-template-loader.git
synced 2026-03-30 10:57:24 -07:00
13 lines
288 B
JavaScript
13 lines
288 B
JavaScript
var componentWithSpacing = `
|
|
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'test-component',
|
|
templateUrl : './some/path/to/file.html',
|
|
styleUrls : ['./app/css/styles.css']
|
|
})
|
|
export class TestComponent {}
|
|
`;
|
|
|
|
module.exports = componentWithSpacing;
|