Initial frontend

This commit is contained in:
2023-11-12 13:14:24 +03:00
parent aa329a2112
commit b8fdc163f7
20 changed files with 8136 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import { ApplicationConfig } from '@angular/core';
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [provideRouter(routes)]
};