Created
April 25, 2022 14:18
-
-
Save antondevv/84d89181731564d1f71c8ca66a5faa2b to your computer and use it in GitHub Desktop.
el
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
var styles = "h1 {\n font-size: 20px;\n color: purple;\n}\n"; | |
const RangeSlider = ({}) => { | |
return (React.createElement(React.Fragment, null, | |
React.createElement("style", null, styles), | |
React.createElement("h1", null, "Range Slider!!!!"), | |
React.createElement("input", { | |
type: "range", min: "2000", max: "30000", step: "500" }))); | |
}; | |
export { RangeSlider as default }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment