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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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;