blob: 6e48218792c028303b2354842effe2d8db158dfe (
plain)
1
2
3
4
5
6
7
|
import { Analytics, PageHit } from 'expo-analytics';
const analytics = new Analytics('UA-112172761-2');
const track = screen => analytics.hit(new PageHit(screen));
export default track;
|