/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/development/basic/barrel-optimization/fixture/node_modules/my-client-lib/button.js
6 строк
173 B
Jiachi Liu
test: rename node_modules_bak to node_modules (#62066)
15 фев 2024, 02:42
Не верифицирован
15 фев 2024, 02:42
8d28d59
Код
Авторство
О чём код?
import { useState } from 'react' export function Button() { const [count, setCount] = useState(0) return <button onClick={() => setCount(count + 1)}>{count}</button> }