diff --git a/core/src/components/range/readme.md b/core/src/components/range/readme.md index ca9655cb49..754a727c43 100644 --- a/core/src/components/range/readme.md +++ b/core/src/components/range/readme.md @@ -83,6 +83,83 @@ left or right of the range. ``` +### React + +```tsx +import React from 'react'; + +import { IonList, IonItem, IonRange, IonLabel, IonIcon } from '@ionic/react'; + +const Example: React.SFC<{}> = () => ( + + + + + + + + + -200 + 200 + + + + + + + + + + + + + + + + + + +); + +export default Example; +``` + + +### Vue + +```html + +``` + + ## Properties