文章
小作品
跨境笔记
站点导航
留言板
Goodies
关于
全部文章
111
JavaScript
3
CSS
1
React
4
Vue
工程 & 模块化
node后端
2
其他
99
分类:
日期:
标签:
useTheme is a custom hook used to get the theme object from context.
useTheme
import { useTheme } from '@chakra-ui/react';
The useTheme hook returns the theme object.
function Example() { const theme = useTheme(); return <div>{/* Do something with the theme */}</div>;}