From c8d6130e6355a6f8f460c114ed7bac0221eb0020 Mon Sep 17 00:00:00 2001 From: sebdet Date: Thu, 4 Jul 2019 15:50:34 +0200 Subject: More modular approach Modular approach for React components and CSS + theming Issue-ID: CLAMP-418 Change-Id: I359f31e92492ae75ac26ef297abde822c6cd56ea Signed-off-by: sebdet --- ui-react/src/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ui-react/src/index.js') diff --git a/ui-react/src/index.js b/ui-react/src/index.js index 39162f56..b2fc3b0f 100644 --- a/ui-react/src/index.js +++ b/ui-react/src/index.js @@ -22,9 +22,10 @@ */ import React from 'react'; import ReactDOM from 'react-dom'; -import Clamp from './Clamp'; +import OnapClamp from './OnapClamp'; + ReactDOM.render( - , + , document.getElementById('root') ) -- cgit 1.2.3-korg