我有一个自定义钩子
function myCustomHook() {
const currentComponentName = //?
return `currentComponentName${customSuffix}`
}
function Sample() {
const name = myCustomHook()
}
function Component2() {
const name = myCustomHook()
}
是否可以获得组件的唯一名称?或此用例的其他任何替代方法?