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

Hello there, Welcome table-plugin 👋

You're up and running

What's next?

Next steps

Here are some things you can do with Nx:

Add UI library
# Generate UI lib
nx g @nx/angular:lib ui
# Add a component
nx g @nx/angular:component ui/src/lib/button
View project details
nx show project table-plugin --web
View interactive project graph
nx graph
Run affected commands
# see what's been affected by changes
nx affected:graph
# run tests for current changes
nx affected:test
# run e2e tests for current changes
nx affected:e2e

Carefully crafted with

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