Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 933 Bytes

jsx.md

File metadata and controls

16 lines (15 loc) · 933 Bytes

jsx

react结合babel将jsx转化为react.createElement()(之前是这样的)或者jsx的函数(react/jsx-runtime)无需再导入React image.png 从而转化为reactElement 是这样一个的结构

{
        $$typeof: REACT_ELEMENT,
        type,
        key,
        ref,
        props
}

至于为啥的要加个 $$typeof这个而且用symbol是为了防止xss攻击 dan有篇文章就讲到过https://overreacted.io/why-do-react-elements-have-typeof-property/