difference

Daniel Rosenwasser 2015-08-11 18:04:21 -07:00
parent 2d11e7f39d
commit ee998ca20e

2
JSX.md

@ -54,7 +54,7 @@ The `as` operator is available in both `.ts` and `.tsx` files.
# Type Checking
In order to understand type checking with JSX you must first understand the differnece between intrinsic elements value-based elements.
In order to understand type checking with JSX you must first understand the difference between intrinsic elements value-based elements.
Given a JSX expression `<expr />`, `expr` may either refer to something intrinsic to the environment (e.g. a `div` or `span` in a DOM environment) or to a custom component that you've created.
This is important for two reasons: