summaryrefslogtreecommitdiffstats
path: root/ui-react/src/index.js
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2019-07-04 15:50:34 +0200
committersebdet <sebastien.determe@intl.att.com>2019-07-05 16:01:49 +0200
commitc8d6130e6355a6f8f460c114ed7bac0221eb0020 (patch)
treeb4539204eafddbacd6cf6b270e19626aaf9703d1 /ui-react/src/index.js
parent19e628ca032e6f0f9b00b7041a4c32390b5839e1 (diff)
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>
Diffstat (limited to 'ui-react/src/index.js')
-rw-r--r--ui-react/src/index.js5
1 files changed, 3 insertions, 2 deletions
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(
- <Clamp />,
+ <OnapClamp/>,
document.getElementById('root')
)