Table of Contents

Hi, does your heading block tsx also uses id property as id html attribute? If yes, then you good to go!

for example:
export const HeadingBlock = (props) => {
const { id, title } = props;

return (

{title}


);
};

1 Like