Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { createFeature, Slice } from 'routeshub';
import { appSlice } from '~app/routing/hub/app.slice';
import { locationNotes, LocationNotes as R } from './location.notes';
export const locationSlice: Slice = createFeature(
appSlice.location,
locationNotes
);
import { createFeature, Slice } from 'routeshub';
import { bolidRoutes, BolidRoutes } from '../notes';
import { appSlice } from './app.slice';
/**
* Creates feature routes
* through parent in the root
*/
export const bolidSlice: Slice = createFeature(
appSlice.bolid,
bolidRoutes
);
import { createFeature, Slice } from 'routeshub';
import { appSlice } from '~app/routing/hub/app.slice';
import { userCenterNotes, UserCenterNotes as R } from './user-center.notes';
export const userCenterSlice: Slice = createFeature(
appSlice.userCenter,
userCenterNotes
);
import { createFeature, Slice } from 'routeshub';
import { appSlice } from '~app/routing/hub/app.slice';
import { shopNotes, ShopNotes as R } from './shop.notes';
export const shopSlice: Slice = createFeature(appSlice.shop, shopNotes);
import { createFeature, Slice } from 'routeshub';
import { automobileRoutes, AutomobileRoutes } from '../notes';
import { appSlice } from './app.slice';
/**
* Creates feature routes
* through parent in the root
*/
export const automobileSlice: Slice = createFeature<
AutomobileRoutes
>(appSlice.automobile, automobileRoutes);
import { createFeature, Slice } from 'routeshub';
import { appSlice } from '~app/routing/hub/app.slice';
import { homeNotes, HomeNotes } from './home.notes';
export const homeSlice: Slice = createFeature(
appSlice.home,
homeNotes
);
import { createFeature, Slice } from 'routeshub';
import { bikeRoutes, BikeRoutes } from '../notes';
import { appSlice } from './app.slice';
/**
* Creates feature routes
* through parent in the root
*/
export const bikeSlice: Slice = createFeature(
appSlice.bike,
bikeRoutes
);