Skip to content

Instantly share code, notes, and snippets.

@antondevv
Created April 25, 2022 14:18
Show Gist options
  • Save antondevv/84d89181731564d1f71c8ca66a5faa2b to your computer and use it in GitHub Desktop.
Save antondevv/84d89181731564d1f71c8ca66a5faa2b to your computer and use it in GitHub Desktop.
el
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