/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
bench/basic-app/app/ui/reading-progress.js
17 строк
438 B
dan
[Bench] Extend bench app to have realistic client chunk counts (#95814)
15 июл 2026, 16:13
Не верифицирован
15 июл 2026, 16:13
0156307
Код
Авторство
О чём код?
'use client' import { describeBlogVendor } from './vendor-blog' import { useState } from 'react' export default function ReadingProgress() { const [progress] = useState(0) return ( <div className="reading-progress" role="progressbar" aria-valuenow={progress} aria-valuemin={0} aria-valuemax={100} style={{ width: progress + '%' }} /> ) } export const __vendor = typeof describeBlogVendor