/* eslint-disable */
// This file is only used in the dev environment (yarn start). It is not included in production
// build.
import * as React from 'react';
import ReactDOM from 'react-dom'
import Demo from './Demo'

ReactDOM.render(
  <Demo />,
  document.getElementById('root'),
)
