Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
Signed-off-by: Teo Koon Peng <teokoonpeng@gmail.com>
  • Loading branch information
koonpeng committed Oct 10, 2024
1 parent 7c4c7a7 commit 2a96b73
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/rmf-dashboard-framework/examples/keycloak/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ import '@fontsource/roboto/500.css';
import '@fontsource/roboto/700.css';

import ReactDOM from 'react-dom/client';
import { RmfDashboard } from 'rmf-dashboard-framework/components';
import {
InitialWindow,
LocallyPersistentWorkspace,
RmfDashboard,
Workspace,
} from 'rmf-dashboard/components';
import { MicroAppManifest } from 'rmf-dashboard/components/micro-app';
import doorsApp from 'rmf-dashboard/micro-apps/doors-app';
import liftsApp from 'rmf-dashboard/micro-apps/lifts-app';
import createMapApp from 'rmf-dashboard/micro-apps/map-app';
import robotMutexGroupsApp from 'rmf-dashboard/micro-apps/robot-mutex-groups-app';
import robotsApp from 'rmf-dashboard/micro-apps/robots-app';
import tasksApp from 'rmf-dashboard/micro-apps/tasks-app';
import KeycloakAuthenticator from 'rmf-dashboard/services/keycloak';
} from 'rmf-dashboard-framework/components/workspace';
import { MicroAppManifest } from 'rmf-dashboard-framework/micro-apps';
import doorsApp from 'rmf-dashboard-framework/micro-apps/doors-app';
import liftsApp from 'rmf-dashboard-framework/micro-apps/lifts-app';
import createMapApp from 'rmf-dashboard-framework/micro-apps/map-app';
import robotMutexGroupsApp from 'rmf-dashboard-framework/micro-apps/robot-mutex-groups-app';
import robotsApp from 'rmf-dashboard-framework/micro-apps/robots-app';
import tasksApp from 'rmf-dashboard-framework/micro-apps/tasks-app';
import KeycloakAuthenticator from 'rmf-dashboard-framework/services/keycloak';

const mapApp = createMapApp({
attributionPrefix: 'Open-RMF',
Expand Down

0 comments on commit 2a96b73

Please sign in to comment.