From 80209cfb902fc6281556cafe3f086ed6234536cc Mon Sep 17 00:00:00 2001 From: Julian Lamplmair <151610373+jul-lam@users.noreply.github.com> Date: Thu, 14 Dec 2023 14:48:21 +0100 Subject: [PATCH] docs: add IxApplicationContext to React code runtime's index.tsx (#1004) --- .../documentation/static/code-runtime/react/index.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/documentation/static/code-runtime/react/index.tsx b/packages/documentation/static/code-runtime/react/index.tsx index c58a899f793..9c092c4d770 100644 --- a/packages/documentation/static/code-runtime/react/index.tsx +++ b/packages/documentation/static/code-runtime/react/index.tsx @@ -1,12 +1,15 @@ import React from 'react'; import { createRoot } from 'react-dom/client'; +import { IxApplicationContext } from '@siemens/ix-react' import App from './App'; const root = createRoot(document.getElementById('root') as HTMLElement); root.render( - - - + + + + + );