base page scaffolding and expense service

This commit is contained in:
Joe Arndt 2026-02-10 16:09:36 -06:00
parent e77c2b576d
commit bd18fecdff
14 changed files with 101 additions and 9 deletions

View file

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
import { RouterLink } from '@angular/router';
@Component({
selector: 'app-home',
imports: [
RouterLink
],
templateUrl: './home.html',
styleUrl: './home.scss',
})
export class Home { }