Skip to content

Commit

Permalink
refactor: page component を feature ディレクトリの直下に配置
Browse files Browse the repository at this point in the history
  • Loading branch information
kasaharu committed Feb 12, 2024
1 parent e6c974a commit 7bfed66
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Routes } from '@angular/router';
import { TopPageComponent } from './features/top/pages/top/top.component';
import { TopPageComponent } from './features/top/top.component';

export const routes: Routes = [
// { path: '', loadChildren: () => import('./features/top/top.module').then((m) => m.TopModule) },
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { TopComponent } from '../../containers/top/top.component';
import { TopComponent } from './containers/top/top.component';

@Component({
template: '<app-top></app-top>',
Expand Down

0 comments on commit 7bfed66

Please sign in to comment.