Start application
This commit is contained in:
0
src/app/pages/welcome/welcome.css
Normal file
0
src/app/pages/welcome/welcome.css
Normal file
1
src/app/pages/welcome/welcome.html
Normal file
1
src/app/pages/welcome/welcome.html
Normal file
@@ -0,0 +1 @@
|
||||
<router-outlet/>
|
||||
6
src/app/pages/welcome/welcome.routes.ts
Normal file
6
src/app/pages/welcome/welcome.routes.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { Welcome } from './welcome';
|
||||
|
||||
export const WELCOME_ROUTES: Routes = [
|
||||
{ path: '', component: Welcome },
|
||||
];
|
||||
14
src/app/pages/welcome/welcome.ts
Normal file
14
src/app/pages/welcome/welcome.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Component } from '@angular/core';
|
||||
import {RouterOutlet} from "@angular/router";
|
||||
|
||||
@Component({
|
||||
selector: 'app-welcome',
|
||||
imports: [
|
||||
RouterOutlet
|
||||
],
|
||||
templateUrl: './welcome.html',
|
||||
styleUrl: './welcome.css'
|
||||
})
|
||||
export class Welcome {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user