docs(angular): use path alias for shared/ui (#14937)

This commit is contained in:
Piotr Błażejewicz (Peter Blazejewicz) 2023-02-13 16:07:48 +01:00 committed by GitHub
parent 751030a761
commit 6ada5a43cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ Configure the routes:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { RouterModule } from '@angular/router';
import { SharedUiModule } from 'shared/ui';
import { SharedUiModule } from '@store/shared/ui';
import { AppComponent } from './app.component';
import { NxWelcomeComponent } from './nx-welcome.component';
@ -152,7 +152,7 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { CartRouteComponent } from './cart-route/cart-route.component';
import { SharedUiModule } from 'shared/ui';
import { SharedUiModule } from '@store/shared/ui';
@NgModule({
declarations: [CartRouteComponent],