UNPKG

apeman-react-range

Version:
17 lines (14 loc) 302 B
'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> )