/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/e2e/switchable-runtime/utils/time.js
12 строк
308 B
Tim Neutkens
Ensure server components entries are not part of the pages buildmanifest (#38416)
07 июл 2022, 23:17
Не верифицирован
07 июл 2022, 23:17
aa0ba3c
Код
Авторство
О чём код?
export default function Time() { let time if (typeof window !== 'undefined') { // We have to make sure it matches the existing markup when hydrating. time = document.getElementById('__time').textContent } else { time = 'Time: ' + Date.now() } return <span id="__time">{time}</span> }