More modular approach
[clamp.git] / ui-react / src / index.js
index 39162f5..b2fc3b0 100644 (file)
  */
 import React from 'react';
 import ReactDOM from 'react-dom';
-import Clamp from './Clamp';
+import OnapClamp from './OnapClamp';
+
 
 ReactDOM.render(
-       <Clamp />,
+       <OnapClamp/>,
        document.getElementById('root')
 )