Last change
on this file was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 3 months ago |
split group project and individual project into two separate folders
|
-
Property mode
set to
100644
|
File size:
570 bytes
|
Line | |
---|
1 | import {Component, OnInit} from '@angular/core';
|
---|
2 | import { RouterOutlet } from '@angular/router';
|
---|
3 | import {MatSlideToggleModule} from "@angular/material/slide-toggle";
|
---|
4 | import {NavigationComponent} from "./components/navigation/navigation.component";
|
---|
5 | import {FooterComponent} from "./components/footer/footer.component";
|
---|
6 |
|
---|
7 | @Component({
|
---|
8 | selector: 'app-root',
|
---|
9 | standalone: true,
|
---|
10 | imports: [RouterOutlet, MatSlideToggleModule, NavigationComponent, FooterComponent],
|
---|
11 | templateUrl: './app.component.html',
|
---|
12 | styleUrl: './app.component.css'
|
---|
13 | })
|
---|
14 | export class AppComponent {
|
---|
15 |
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.