タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

typescriptとlibraryとuiに関するko-ya-maのブックマーク (1)

  • Mantine

    import { useState } from 'react'; import { IconGripVertical } from '@tabler/icons-react'; import { clamp, useMove } from '@mantine/hooks'; import classes from './Demo.module.css'; function Demo() { const [value, setValue] = useState(0.3); const { ref } = useMove(({ x }) => setValue(clamp(x, 0.1, 0.9))); const labelFloating = value < 0.2 || value > 0.8; return ( <div className={classes.root}> <div

    Mantine
    ko-ya-ma
    ko-ya-ma 2021/05/04
    “Mantine is a MIT licensed open source react components and hooks library with focus on usability, accessibility and developer experience”
  • 1