[init] init version

This commit is contained in:
2023-10-10 03:58:47 +07:00
commit 73359d5f24
299 changed files with 55909 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { IndexComponent } from './index/index.component';
const routes: Routes = [
{path: '', component: IndexComponent},
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class ErrorsRoutingModule { }

View File

@@ -0,0 +1,10 @@
import { NgModule } from '@angular/core';
import { AppSharedModule } from '../../app.shared';
import { IndexComponent } from './index/index.component';
import { ErrorsRoutingModule } from './errors-routing.module';
@NgModule({
declarations: [IndexComponent],
imports: [AppSharedModule, ErrorsRoutingModule],
})
export class ErrorsModule {}

View File

@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-error-index',
templateUrl: './index.component.html',
styleUrls: []
})
export class IndexComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}