You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: "React, State Management, Performance Optimization",
9
+
href: "https://medium.com/tag/react",
10
+
},
11
+
description:
12
+
"Today, we’re thrilled to announce Reactime v26. Calling this an update would be an understatement–Reactime v26 is a complete overhaul, introducing groundbreaking new features and transforming its design. This release delivers a more intuitive, efficient, and refined experience for developers, setting a new standard for React debugging tools.",
name: "React, Open Source, Debugging, Optimization",
49
-
href: "https://medium.com/tag/react",
50
-
},
51
-
description:
52
-
"Reactime is a lightweight chrome extension that sheds light on users’ React applications. With features that include a node diagram of React components, render-time analytics, state snapshots and time travel debugging...",
// name: "React, Open Source, Debugging, Optimization",
69
+
// href: "https://medium.com/tag/react",
70
+
// },
71
+
// description:
72
+
// "Reactime is a lightweight chrome extension that sheds light on users’ React applications. With features that include a node diagram of React components, render-time analytics, state snapshots and time travel debugging...",
Copy file name to clipboardExpand all lines: src/pages/components/FeaturesSection.tsx
+23-21Lines changed: 23 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -14,56 +14,57 @@ import React from "react";
14
14
15
15
constfeatures=[
16
16
{
17
-
name: "Time Travel Rendering",
17
+
name: "State SnapShot Display",
18
18
description:
19
-
"Rewind to previous state changes from your DOM history with a simple click of a button",
20
-
icon: ClockIcon,
19
+
"See your application state in an interactive format for clear and concise state management, all recorded state changes are saved in snapshots.",
20
+
icon: CameraIcon,
21
21
},
22
22
{
23
-
name: "Context Display Panel",
23
+
name: "Time Travel Rendering",
24
24
description:
25
-
"Visualize the relationships of context providers and consumers, along with live context theme data",
26
-
icon: EyeIcon,
25
+
"Rewind to previous state changes by jumping to a specific snapshot, using the time travel slider, or playing through a series of snapshots with the play button.",
26
+
icon: ClockIcon,
27
27
},
28
28
{
29
-
name: "State SnapShot Display",
29
+
name: "Context Data Display",
30
30
description:
31
-
"See your application state in an interactive format for clear and concise state management",
32
-
icon: CameraIcon,
31
+
"Visualize the relationships of context providers and consumers, along with live context theme data, properties and values.",
32
+
icon: EyeIcon,
33
33
},
34
34
{
35
35
name: "Prop Visualization",
36
-
description: "See how properties flow down the component tree",
36
+
description:
37
+
"View the component map and track component relationships, as well as the flow of properties down the component tree.",
37
38
icon: CogIcon,
38
39
},
39
40
{
40
41
name: "Accessibility Debugging",
41
42
description:
42
-
"Check how a screen reader reads your application per state change",
43
+
"Prioritize accessibility by analyzing how a screen reader interprets your application per state change.",
43
44
icon: EyeIcon,
44
45
},
45
46
{
46
47
name: "Components Performance Display",
47
48
description:
48
-
"Visualize the latency trends for component render times on each state change",
49
+
"Analyze the latency trends for component render times, organized per component, per state change.",
49
50
icon: PresentationChartLineIcon,
50
51
},
51
52
{
52
53
name: "State History Diffing",
53
54
description:
54
-
"View the exact value differences in state changes, organized by snapshot",
55
+
"Compare snapshots in order to pinpoint the exact difference in property values per state change.",
55
56
icon: ArrowPathIcon,
56
57
},
57
58
{
58
-
name: "Download State History",
59
+
name: "Download / Upload State History",
59
60
description:
60
-
"Save your state history as a JSON source file for future reference",
61
+
"Download or upload a JSON source file of your application's state history to resume or share your working session.",
61
62
icon: ArrowDownTrayIcon,
62
63
},
63
64
{
64
65
name: "Atom and Selector Relationships",
65
66
description:
66
-
"Visualize the mapping of Atoms and Selectors to components in Recoil Apps",
67
+
"Visualize the detailed mapping of Atoms and Selectors to their associated components in Recoil applications.",
67
68
icon: MapIcon,
68
69
},
69
70
];
@@ -77,11 +78,12 @@ export default function FeaturesSection() {
0 commit comments