aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/frontend/src/main/components/root.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/base/frontend/src/main/components/root.tsx')
-rw-r--r--plugins/base/frontend/src/main/components/root.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/base/frontend/src/main/components/root.tsx b/plugins/base/frontend/src/main/components/root.tsx
index 70ed9550..9f3ecba9 100644
--- a/plugins/base/frontend/src/main/components/root.tsx
+++ b/plugins/base/frontend/src/main/components/root.tsx
@@ -4,15 +4,24 @@ import RedBox from 'redbox-react';
import App from "./app";
import './app/index.scss';
+import { NavigationPaneSearch } from './navigationPaneSearch/navigationPaneSearch';
const appEl = document.getElementById('searchBar');
const rootEl = document.createElement('div');
+const renderNavigationPane = () => {
+ render(
+ <NavigationPaneSearch />,
+ document.getElementById('paneSearch')
+ )
+}
+
let renderApp = () => {
render(
<App/>,
rootEl
);
+ renderNavigationPane();
};
// @ts-ignore