Skip to content

Instantly share code, notes, and snippets.

@pytqqq
Created February 8, 2023 13:51
Show Gist options
  • Save pytqqq/fb8c980e076b5a0e2064008fa4fa3246 to your computer and use it in GitHub Desktop.
Save pytqqq/fb8c980e076b5a0e2064008fa4fa3246 to your computer and use it in GitHub Desktop.
import React, { Profiler } from "react";
import { View } from "react-native";
const Component = () => (
<Profiler id="Component" onRender={(...args) => console.log(args)}>
<View />
</Profiler>
);
export default Component;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment