Make REACT_PROFILER_TYPE numeric value unique (#12843)

This commit is contained in:
Brian Vaughn
2018-05-17 08:55:41 -07:00
committed by GitHub
parent 2d20dc47a3
commit 4b8510be0f
+2 -2
View File
@@ -24,8 +24,8 @@ export const REACT_STRICT_MODE_TYPE = hasSymbol
? Symbol.for('react.strict_mode')
: 0xeacc;
export const REACT_PROFILER_TYPE = hasSymbol
? Symbol.for('react.profile_root')
: 0xeacc;
? Symbol.for('react.profiler')
: 0xead2;
export const REACT_PROVIDER_TYPE = hasSymbol
? Symbol.for('react.provider')
: 0xeacd;