77350: wip

This commit is contained in:
lotte
2021-03-02 18:22:02 +01:00
committed by Art Lowel
parent 1c4763b409
commit cddbdbfed7
21 changed files with 242 additions and 25 deletions

View File

@@ -0,0 +1,25 @@
import { Component } from '@angular/core';
import { CreateProfileComponent } from './create-profile.component';
import { ThemedComponent } from '../../shared/theme-support/themed.component';
/**
* Themed wrapper for CreateProfileComponent
*/
@Component({
selector: 'ds-themed-create-profile',
styleUrls: [],
templateUrl: './../../shared/theme-support/themed.component.html'
})
export class ThemedCreateProfileComponent extends ThemedComponent<CreateProfileComponent> {
protected getComponentName(): string {
return 'CreateProfileComponent';
}
protected importThemedComponent(themeName: string): Promise<any> {
return import(`../../themes/${themeName}/app/register-page/create-profile/create-profile.component`);
}
protected importUnthemedComponent(): Promise<any> {
return import(`./create-profile.component`);
}
}