2025-02-21 14:09:35 -05:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
import { RouterOutlet } from '@angular/router';
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-root',
|
|
|
|
|
imports: [RouterOutlet],
|
|
|
|
|
templateUrl: './app.component.html',
|
2025-02-23 21:07:50 -05:00
|
|
|
styleUrl: './app.component.scss',
|
2025-02-21 14:09:35 -05:00
|
|
|
})
|
|
|
|
|
export class AppComponent {
|
|
|
|
|
title = 'rc-portfolio';
|
|
|
|
|
}
|