import { Component, ViewEncapsulation } from '@angular/core'; import { CommonModule } from '@angular/common'; @Component({ selector: 'app-nx-welcome', imports: [CommonModule], template: `

Hello there, Welcome web-app 👋 HMR is working!

You're up and running

What's next?

Next steps

Here are some things you can do with Nx:

Build, test and lint your app
# Build
nx build 
# Test
nx test 
# Lint
nx lint 
# Run them together!
nx run-many -t build test lint
View project details
nx show project web-app
View interactive project graph
nx graph
Add UI library
# Generate UI lib
nx g @nx/angular:lib ui
# Add a component
nx g @nx/angular:component ui/src/lib/button

Carefully crafted with

`, styles: [], encapsulation: ViewEncapsulation.None, }) export class NxWelcome {}