maccounter
11 строк · 260.0 Байт
1import React from 'react'
2import styles from './Switcher.module.css'
3
4const Switcher: React.FC = () => (
5<label className={styles.switch}>
6<input type="checkbox" />
7<span className={styles.slider} />
8</label>
9)
10
11export default Switcher
12