Skip to content

Commit

Permalink
refactor(projects): add router outlet to empty project
Browse files Browse the repository at this point in the history
  • Loading branch information
jackofdiamond5 committed Dec 11, 2023
1 parent c14d042 commit c2ba933
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';

@Component({
selector: 'app-root',
standalone: true,
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
styleUrls: ['./app.component.scss'],
standalone: true,
imports: [RouterOutlet]
})
export class AppComponent {
title = 'Home - IgniteUI for Angular';
Expand Down

0 comments on commit c2ba933

Please sign in to comment.