Skip to content

Commit 19d2f59

Browse files
add ui-label to app-one
1 parent 217ece8 commit 19d2f59

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
<app-nx-welcome></app-nx-welcome> <router-outlet></router-outlet>
1+
<h2>App One</h2>
2+
<lib-ui-label></lib-ui-label>
3+
<router-outlet></router-outlet>

apps/app-one/src/app/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import { Component } from '@angular/core';
22
import { RouterModule } from '@angular/router';
33
import { NxWelcomeComponent } from './nx-welcome.component';
4+
import { UiLabelComponent } from '@angular-mfe-nx/ui';
45

56
@Component({
67
standalone: true,
7-
imports: [NxWelcomeComponent, RouterModule],
8+
imports: [RouterModule, UiLabelComponent],
89
selector: 'app-root',
910
templateUrl: './app.component.html',
1011
styleUrl: './app.component.scss',

apps/app-shell/src/app/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import { Component } from '@angular/core';
22
import { RouterModule } from '@angular/router';
33
import { NxWelcomeComponent } from './nx-welcome.component';
4+
import { UiButtonComponent, UiLabelComponent } from '@angular-mfe-nx/ui';
45

56
@Component({
67
standalone: true,
7-
imports: [NxWelcomeComponent, RouterModule],
8+
imports: [RouterModule],
89
selector: 'app-root',
910
templateUrl: './app.component.html',
1011
styleUrl: './app.component.scss',

0 commit comments

Comments
 (0)