Pages are now grouped per group they appear in on in the header (where possible) Utilities used by multiple pages in the project are grouped in folders such as services/pipes/etc
15 lines
302 B
TypeScript
15 lines
302 B
TypeScript
import {Component} from '@angular/core';
|
|
import {HeaderComponent} from '@header/header.component';
|
|
|
|
@Component({
|
|
selector: 'app-skyblock',
|
|
imports: [
|
|
HeaderComponent
|
|
],
|
|
templateUrl: './skyblock.component.html',
|
|
styleUrl: './skyblock.component.scss'
|
|
})
|
|
export class SkyblockComponent {
|
|
|
|
}
|