TimelineNotSupported() — react Function Reference
Architecture documentation for the TimelineNotSupported() function in TimelineNotSupported.js from the react codebase.
Entity Profile
Dependency Diagram
graph TD 9be1b04a_aeff_a22a_fb97_3032dd5628fc["TimelineNotSupported()"] af2d2803_cefc_34b0_cb09_2b822b422527["TimelineNotSupported.js"] 9be1b04a_aeff_a22a_fb97_3032dd5628fc -->|defined in| af2d2803_cefc_34b0_cb09_2b822b422527 style 9be1b04a_aeff_a22a_fb97_3032dd5628fc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/react-devtools-timeline/src/TimelineNotSupported.js lines 72–100
export default function TimelineNotSupported({
isPerformanceTracksSupported,
}: Props): React.Node {
return (
<div className={styles.Column}>
<div className={styles.Header}>Timeline profiling not supported.</div>
{isPerformanceTracksSupported ? (
<PerformanceTracksSupported />
) : (
<UnknownUnsupportedReason />
)}
{isInternalFacebookBuild && (
<div className={styles.MetaGKRow}>
<strong>Meta only</strong>: Enable the{' '}
<a
className={styles.Link}
href="https://fburl.com/react-devtools-scheduling-profiler-gk"
rel="noopener noreferrer"
target="_blank">
react_enable_scheduling_profiler GK
</a>
.
</div>
)}
</div>
);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does TimelineNotSupported() do?
TimelineNotSupported() is a function in the react codebase, defined in packages/react-devtools-timeline/src/TimelineNotSupported.js.
Where is TimelineNotSupported() defined?
TimelineNotSupported() is defined in packages/react-devtools-timeline/src/TimelineNotSupported.js at line 72.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free