'use strict'

import React from 'react'
import {ApRange, ApRangeStyle} from 'apeman-react-range'

const html = (
  <html>
  <head>
    <ApRangeStyle></ApRangeStyle>
  </head>
  <body>
  <ApRange min={ 0 } max={ 100 }
           onChange={ (from, to)=>{console.log(from, to)} } />
  </body>
  </html>
)
