+
+ {/*можно убрать этот тег*/}
+
+ {/*should work (должно работать)*/}
+
+ {value1}
+
+
+
+
+ {value1}
+
+ {value2}
+
+
+
+ {/*можно убрать этот тег*/}
+
+ {/*можно убрать этот тег*/}
+
+ )
+}
+
+export default HW11
diff --git a/src/s2-homeworks/hw11/common/c7-SuperRange/SuperRange.module.css b/src/s2-homeworks/hw11/common/c7-SuperRange/SuperRange.module.css
new file mode 100644
index 0000000..cbd0093
--- /dev/null
+++ b/src/s2-homeworks/hw11/common/c7-SuperRange/SuperRange.module.css
@@ -0,0 +1,21 @@
+.range {
+ appearance: none;
+ width: 160px;
+
+ outline: none;
+ border-radius: 3px;
+ background: #99ff99;
+}
+
+.range::-webkit-slider-thumb {
+ appearance: none;
+ position: relative;
+ width: 16px;
+ height: 16px;
+ top: 3px;
+ margin-top: -6px;
+
+ background: red;
+ cursor: pointer;
+ z-index: 2;
+}
\ No newline at end of file
diff --git a/src/s2-homeworks/hw11/common/c7-SuperRange/SuperRange.tsx b/src/s2-homeworks/hw11/common/c7-SuperRange/SuperRange.tsx
new file mode 100644
index 0000000..2d361cc
--- /dev/null
+++ b/src/s2-homeworks/hw11/common/c7-SuperRange/SuperRange.tsx
@@ -0,0 +1,45 @@
+import React, {ChangeEvent, DetailedHTMLProps, InputHTMLAttributes} from 'react'
+import s from './SuperRange.module.css'
+
+// тип пропсов обычного инпута
+type DefaultInputPropsType = DetailedHTMLProps