- Basic Material Design - Default Component to see anything - theme switching between light and dark - language change between german and english
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
import { Routes } from '@angular/router';
|
|
import {WelcomeComponent} from './features/welcome/welcome';
|
|
|
|
export const routes: Routes = [
|
|
{ path: '', component: WelcomeComponent },
|
|
];
|