Self-Closing Tag -- [React.js筆記]
Reference : https://facebook.github.io/react/tips/self-closing-tag.html
在JSX,單獨一個<MyComponent />是合法的,但是單獨<MyComponent>這樣就不行。
所有的標籤是必須close, 必須是Self-Closing標籤或是要相對應的</ MyComponent>標籤才行。
所有的標籤是必須close, 必須是Self-Closing標籤或是要相對應的</ MyComponent>標籤才行。
留言