| 12 | export const compareOrSwap = (oldType, newType) => hotComponentCompare(oldType, newType); |
| 13 | |
| 14 | export const cold = type => { |
| 15 | blacklistByType(type); |
| 16 | return type; |
| 17 | }; |
| 18 | |
| 19 | export const configureComponent = (component, options) => setComponentOptions(component, options); |
| 20 |