Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Description: Fixing the issue with experimental test component
  • Loading branch information
amolghode1981 committed Jun 7, 2022
1 parent 4fa9de0 commit dd87090
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion apps/meteor/client/views/voip-exp/routes.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import { Meteor } from 'meteor/meteor';
import { lazy } from 'react';

import { createRouteGroup } from '../../lib/createRouteGroup';

export const registerVoIPRoutes = createRouteGroup('voipexp', '/voipexp', () => import('./VoipRouter'));
export const registerVoIPRoutes = createRouteGroup(
'voipexp',
'/voipexp',
lazy(() => import('./VoipRouter')),
);

Meteor.startup(() => {
console.log('Server started');
Expand Down

0 comments on commit dd87090

Please sign in to comment.