我正在使用 Styleguidist,但不幸的是它忽略了我的功能组件中的所有内容,例如:
/**
* Displays a pageable list of projects or a single (detailed) project if an ID is given via the router.
*
* @version 1.0.0
* @author Django
*/
function Projects() {
let {id} = useParams<{ id: string }>()
/**
* Insert text at cursor position.
*
* @param {React.ChangeEvent<HTMLInputElement>} event
* @public
*/
const handleLocationFilterChange = (event: React.ChangeEvent<HTMLInputElement>) => {
setLocationFilter((event.target as HTMLInputElement).value)
};
}
export default Projects
这将只显示第一个注释块,但内部函数将被忽略。基本上函数内的每个注释都被忽略了。知道我想念什么吗?