Skip to content

Commit

Permalink
Changing to standalone components.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigokamada committed Aug 22, 2024
1 parent e9ca52c commit 1948de5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';

@Component({
selector: 'app-root',
standalone: true,
imports: [
RouterOutlet,
],
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
styleUrl: './app.component.scss',
})
export class AppComponent {

Expand Down

0 comments on commit 1948de5

Please sign in to comment.