(t: typeof Transition)
| 72 | * so that it can be annotated as pure |
| 73 | */ |
| 74 | const decorate = (t: typeof Transition) => { |
| 75 | t.displayName = 'Transition' |
| 76 | t.props = TransitionPropsValidators |
| 77 | if (__COMPAT__) { |
| 78 | t.__isBuiltIn = true |
| 79 | } |
| 80 | return t |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * DOM Transition is a higher-order-component based on the platform-agnostic |