blob: eed3935e1e27bcc2c59ac9553139320222ecc24a [file] [log] [blame]
xg353y065c6a92019-06-25 12:23:28 +02001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights
6 * reserved.
7 * ================================================================================
xuegao19e628c2019-06-27 17:41:01 +02008 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
xg353y065c6a92019-06-25 12:23:28 +020010 * You may obtain a copy of the License at
xuegao19e628c2019-06-27 17:41:01 +020011 *
xg353y065c6a92019-06-25 12:23:28 +020012 * http://www.apache.org/licenses/LICENSE-2.0
xuegao19e628c2019-06-27 17:41:01 +020013 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
xg353y065c6a92019-06-25 12:23:28 +020018 * limitations under the License.
19 * ============LICENSE_END============================================
20 * ===================================================================
xuegao19e628c2019-06-27 17:41:01 +020021 *
xg353y065c6a92019-06-25 12:23:28 +020022 */
sebdetc95e8df2019-06-25 11:06:06 +020023import React from 'react';
24import ReactDOM from 'react-dom';
sebdetc8d61302019-07-04 15:50:34 +020025import OnapClamp from './OnapClamp';
sebdet4946e5b2019-07-10 12:32:36 +020026import { Route, BrowserRouter } from 'react-router-dom'
xuegaof248df62019-07-15 15:16:18 +020027import LoopModal from './components/dialogs/LoopModal';
sebdet4946e5b2019-07-10 12:32:36 +020028import OperationalPolicyModal from './components/dialogs/OperationalPolicy/OperationalPolicyModal';
sebdetc95e8df2019-06-25 11:06:06 +020029
xuegao7c7323d2019-07-09 11:52:20 +020030const routing = (
sebdet4946e5b2019-07-10 12:32:36 +020031 <BrowserRouter >
32 <OnapClamp />
33 <Route path="/operationalPolicyModal" render={() => <OperationalPolicyModal />} />
xuegaof248df62019-07-15 15:16:18 +020034 <Route path="/openLoop" component={ LoopModal } />
sebdet4946e5b2019-07-10 12:32:36 +020035 </BrowserRouter>
36);
xuegao7c7323d2019-07-09 11:52:20 +020037
sebdet4946e5b2019-07-10 12:32:36 +020038ReactDOM.render(
39 routing,
40 document.getElementById('root')
41)