Skip to content
Snippets Groups Projects
Commit 1f755f9b authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

remove ngrx

parent 7f88769d
No related branches found
No related tags found
1 merge request!447No NGRX: spectra
import {Routes} from '@angular/router'; import {Routes} from '@angular/router';
import {provideEffects} from '@ngrx/effects';
import {provideState} from '@ngrx/store';
import {SpectraAppEffects} from './spectra/state/app.effects';
import {spectraAppFeature} from './spectra/state/app.reducer';
/** GMM routes */ /** GMM routes */
const routes: Routes = [ const routes: Routes = [
...@@ -21,10 +16,6 @@ const routes: Routes = [ ...@@ -21,10 +16,6 @@ const routes: Routes = [
loadComponent: () => loadComponent: () =>
import('./spectra/app.component').then(com => com.AppComponent), import('./spectra/app.component').then(com => com.AppComponent),
path: 'spectra', path: 'spectra',
providers: [
provideState(spectraAppFeature),
provideEffects(SpectraAppEffects),
],
}, },
]; ];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment