Skip to main content

useDebugValue

用于在 React 开发者工具中显示自定义标签。

React 开发者工具:即 React Developer Tools,是 Chrome 浏览器的一个插件,可以方便进行项目调试。

// 在开发者工具中显示自定义标签
useDebugValue(value, (formattedValue) => {
return `Custom Value: ${formattedValue}`;
});