UNPKG

@ibm-adw/skill-toolkit

Version:

Developing your own skills with IBM Automation Digital Worker Skill Toolkit

30 lines (24 loc) 675 B
/* Licensed Materials - Property of IBM 5737-I23 Copyright IBM Corp. 2019. All Rights Reserved. U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ import React from 'react'; import ReactDOM from 'react-dom'; import { Router } from 'react-router-dom'; import { LocaleProvider } from './common/locale'; import './index.scss'; import { history } from './history.js'; import { App } from './components/app/App'; ReactDOM.render( <Router history={history}> <LocaleProvider> <App/> </LocaleProvider> </Router> , document.getElementById('app') );