Type inference is simple but powerful. The compiler will infer each type that's unknown by usage.

A consequence of this is that prop drilling is really simple, because you rarely have to annotate props. Just using the prop in the component defining it is usually enough.
Post image

Comments