init project

This commit is contained in:
2025-05-19 15:50:55 +02:00
parent c0216eb2dd
commit b8bd3b0398
26 changed files with 15335 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { Routes } from '@angular/router';
import {CalculatorComponent} from './calculator/calculator.component';
export const routes: Routes = [
{
path: '',
component: CalculatorComponent
}
];