import React from 'react';
import { render } from 'react-dom';
import Basic from './BasicExample';
import OtherTier from './StartOnNthTier';

render(
  <div style={{ display: 'flex', justifyContent: 'space-around' }}>
    <link href='http://procore-core.global.ssl.fastly.net/3.0.1/core-icons/icons.css' rel='stylesheet' />
    <style type='text/css'>{'body { height: 125vh; border: 5px dotted dodgerblue; }'}</style>
    {Basic()}
    {OtherTier()}
  </div>,
  window.document.getElementById('root'),
);
