[DRAFT] Import scheduling profiler into DevTools Profiler (#21897)

This commit is contained in:
Brian Vaughn
2021-07-22 13:58:57 -04:00
committed by GitHub
parent ae5d26154b
commit f4161c3ec7
63 changed files with 935 additions and 1132 deletions

View File

@@ -103,7 +103,14 @@ export function loadHookNames(
let didTimeout = false;
loadHookNamesFunction(hooksTree).then(
const response = loadHookNamesFunction(hooksTree);
console.log(
'loadHookNamesFunction:',
loadHookNamesFunction,
'->',
response,
);
response.then(
function onSuccess(hookNames) {
if (didTimeout) {
return;