From 7b5a4e452b1e4cee2ec13220b0b2c828906f27db Mon Sep 17 00:00:00 2001 From: Mohamed Elmuhtadi Date: Tue, 1 Aug 2023 14:22:05 -0700 Subject: [PATCH] fix(reactExample): fix css in Knowledge Graph Component --- examples/react-app/src/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/react-app/src/index.tsx b/examples/react-app/src/index.tsx index 5c1425e8b..2b8c74d01 100644 --- a/examples/react-app/src/index.tsx +++ b/examples/react-app/src/index.tsx @@ -7,6 +7,8 @@ import { StrictMode } from 'react'; import router from './router'; import { Density, Mode, applyDensity, applyMode } from '@cloudscape-design/global-styles'; +import '@cloudscape-design/global-styles/index.css'; +import '@iot-app-kit/components/styles.css'; applyDensity(Density.Comfortable); applyMode(Mode.Dark);