1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
Files
tooot/src/startup/dev.ts
Zhiyuan Zheng 5ec9118fb2 Updates
2021-01-16 00:00:31 +01:00

19 lines
419 B
TypeScript

import * as Analytics from 'expo-firebase-analytics'
import React from 'react'
import log from './log'
const dev = () => {
if (__DEV__) {
Analytics.setDebugModeEnabled(true)
log('log', 'devs', 'initializing wdyr')
const whyDidYouRender = require('@welldone-software/why-did-you-render')
whyDidYouRender(React, {
trackHooks: true,
hotReloadBufferMs: 1000
})
}
}
export default dev