test.component.ts 198 B

123456789101112131415161718
  1. @Component({
  2. selector: 'app-test',
  3. template: `<ul> <li>test</li>
  4. </ul>
  5. `,
  6. styles: [ `
  7. :host {
  8. color: red;
  9. }
  10. div { background: blue
  11. }
  12. `
  13. ]
  14. })
  15. class TestComponent {}