Skip to content

Commit 51fa39c

Browse files
author
Igor Goldobin
committed
fix: removed unused components
1 parent 4911f25 commit 51fa39c

8 files changed

Lines changed: 1 addition & 153 deletions

File tree

AddressOwnershipTool.Web/ClientApp/src/app/app.module.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { AppComponent } from './app.component';
88
import { NavMenuComponent } from './nav-menu/nav-menu.component';
99
import { HomeComponent } from './home/home.component';
1010
import { ClaimGroupsTableComponent } from './home/claim-groups-table/claim-groups-table.component';
11-
import { CounterComponent } from './counter/counter.component';
12-
import { FetchDataComponent } from './fetch-data/fetch-data.component';
1311
import { HTTP_INTERCEPTORS } from '@angular/common/http';
1412
import { AuthInterceptor } from './shared/auth.interceptor';
1513
import { ReactiveFormsModule } from '@angular/forms';
@@ -20,8 +18,6 @@ import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
2018
AppComponent,
2119
NavMenuComponent,
2220
HomeComponent,
23-
CounterComponent,
24-
FetchDataComponent,
2521
ClaimGroupsTableComponent
2622
],
2723
imports: [
@@ -31,9 +27,7 @@ import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
3127
FormsModule,
3228
NgbModule,
3329
RouterModule.forRoot([
34-
{ path: '', component: HomeComponent, pathMatch: 'full' },
35-
{ path: 'counter', component: CounterComponent },
36-
{ path: 'fetch-data', component: FetchDataComponent },
30+
{ path: '', component: HomeComponent, pathMatch: 'full' }
3731
])
3832
],
3933
providers: [

AddressOwnershipTool.Web/ClientApp/src/app/counter/counter.component.html

Lines changed: 0 additions & 7 deletions
This file was deleted.

AddressOwnershipTool.Web/ClientApp/src/app/counter/counter.component.spec.ts

Lines changed: 0 additions & 34 deletions
This file was deleted.

AddressOwnershipTool.Web/ClientApp/src/app/counter/counter.component.ts

Lines changed: 0 additions & 13 deletions
This file was deleted.

AddressOwnershipTool.Web/ClientApp/src/app/fetch-data/fetch-data.component.html

Lines changed: 0 additions & 24 deletions
This file was deleted.

AddressOwnershipTool.Web/ClientApp/src/app/fetch-data/fetch-data.component.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

AddressOwnershipTool.Web/ClientApp/src/app/nav-menu/nav-menu.component.html

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,6 @@
2727
>
2828
<a class="nav-link text-dark" [routerLink]="['/']">Home</a>
2929
</li>
30-
<li class="nav-item" [routerLinkActive]="['link-active']">
31-
<a class="nav-link text-dark" [routerLink]="['/counter']"
32-
>Counter</a
33-
>
34-
</li>
35-
<li class="nav-item" [routerLinkActive]="['link-active']">
36-
<a class="nav-link text-dark" [routerLink]="['/fetch-data']"
37-
>Fetch data</a
38-
>
39-
</li>
4030
</ul>
4131
</div>
4232
</div>

AddressOwnershipTool.Web/Controllers/WeatherForecastController.cs

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)