cic-staff-client/src/testing/shared-module-stub.ts

11 lines
315 B
TypeScript
Raw Permalink Normal View History

2021-06-15 18:37:33 +02:00
import { Component } from '@angular/core';
2020-11-25 08:54:00 +01:00
2021-06-15 18:37:33 +02:00
@Component({ selector: 'app-sidebar', template: '' })
2020-11-25 08:54:00 +01:00
export class SidebarStubComponent {}
2021-06-15 18:37:33 +02:00
@Component({ selector: 'app-topbar', template: '' })
2020-11-25 08:54:00 +01:00
export class TopbarStubComponent {}
2021-06-15 18:37:33 +02:00
@Component({ selector: 'app-footer', template: '' })
2020-11-25 08:54:00 +01:00
export class FooterStubComponent {}