import React, { Profiler as ReactProfiler, PropsWithChildren } from 'react'; import { dreaction } from '../dreaction'; export const Profiler: React.FC> = React.memo( (props) => { return ( { dreaction.send('profiler.render', { id, phase, actualDuration, baseDuration, startTime, commitTime, }); }} > {props.children} ); } ); Profiler.displayName = 'Profiler';