import React from 'react';
import DemoAppIndex from './demo/DemoAppIndex';

export default () => (
  // eslint-disable-next-line react/forbid-dom-props
  <div style={{ height: '700px' }}>
    <DemoAppIndex />
  </div>
);
