mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
feat(nx): upgrade nx 20 and angular 19
This commit is contained in:
@@ -3,7 +3,6 @@ import { RouterOutlet } from '@angular/router';
|
||||
import { NavComponent } from './ui/nav.component';
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
imports: [RouterOutlet, NavComponent],
|
||||
selector: 'app-root',
|
||||
template: `
|
||||
|
||||
@@ -2,7 +2,6 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
|
||||
import { FormComponent } from '../ui/form.component';
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
imports: [FormComponent],
|
||||
template: `
|
||||
<section class="mx-auto max-w-screen-sm">
|
||||
|
||||
@@ -3,7 +3,6 @@ import { FormBuilder, ReactiveFormsModule, Validators } from '@angular/forms';
|
||||
|
||||
@Component({
|
||||
selector: 'app-form',
|
||||
standalone: true,
|
||||
imports: [ReactiveFormsModule],
|
||||
template: `
|
||||
<form [formGroup]="form" (ngSubmit)="onSubmit()" class="space-y-4">
|
||||
|
||||
@@ -3,7 +3,6 @@ import { RouterLink, RouterLinkActive } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'app-nav',
|
||||
standalone: true,
|
||||
imports: [RouterLink, RouterLinkActive],
|
||||
template: `
|
||||
<nav
|
||||
|
||||
Reference in New Issue
Block a user