import React from "react";import { Button, Text, View, SafeAreaView, StyleSheet, Systrace } from "react-native";const App = () => { const enableProfiling = () => { Systrace.setEnabled(true); // Call setEnabled to turn on the profiling. Systrace.beginEvent('event_label') Systrace.counterEvent('event_label', 10); } const stopProfiling = () => { Systrace.endEvent() } return ( React Native Systrace API