re organized files for consistency

This commit is contained in:
2026-03-02 14:12:15 -08:00
parent 328a44043f
commit 4493d772bb
7 changed files with 4 additions and 4 deletions
@@ -1,7 +1,7 @@
import { Component, inject, signal } from '@angular/core';
import { StudentCard } from '../student-card/student-card';
import { StudentService } from '../../../../shared/services/dummy-student.service';
import { StudentCardDto } from '../../../../shared/classes/student-card.dto';
import { StudentService } from '../../../shared/services/dummy-student.service';
import { StudentCardDto } from '../../../shared/classes/student-card.dto';
export type DisplayMode = 'card' | 'list';
@@ -1,6 +1,6 @@
import { Component, input } from '@angular/core';
import { DatePipe } from '@angular/common';
import { StudentCardDto } from '../../../../shared/classes/student-card.dto';
import { StudentCardDto } from '../../../shared/classes/student-card.dto';
@Component({
selector: 'app-student-card',
@@ -1,6 +1,6 @@
import { Routes } from '@angular/router';
import { Home } from './pages/home/home';
import { StudentCardList } from './pages/components/student-card-list/student-card-list';
import { StudentCardList } from './components/student-card-list/student-card-list';
export default [
{