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
16 lines
300 B
JavaScript
16 lines
300 B
JavaScript
var test = `
|
|
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'test-component',
|
|
templateUrl: './some/path/to/file.html',
|
|
styleUrls: [
|
|
"./app/css/styles.css",
|
|
'./app/css/more-styles.css'
|
|
]
|
|
})
|
|
export class TestComponent {}
|
|
`;
|
|
|
|
module.exports = test;
|