More modular approach
Modular approach for React components and CSS + theming
Issue-ID: CLAMP-418
Change-Id: I359f31e92492ae75ac26ef297abde822c6cd56ea
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
diff --git a/ui-react/src/index.js b/ui-react/src/index.js
index 39162f5..b2fc3b0 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(
- <Clamp />,
+ <OnapClamp/>,
document.getElementById('root')
)