I am working on a tool in the form of a chrome extension that checks the timing metrics for components wrapped in the Suspense component to check how long they were suspense for. Here's an example of what I am referring to.
<Suspense placeholder={<h1>Loading...</h1>}>
<Component />
</Suspense>
However, I am having trouble checking for specific component names. Was wondering if someone could suggest an approach or a method of retrieving component names.