tooot/src/startup/dev.ts

13 lines
292 B
TypeScript
Raw Normal View History

2021-01-07 19:13:09 +01:00
const dev = () => {
if (__DEV__) {
2022-08-19 01:58:17 +02:00
// log('log', 'devs', 'initializing wdyr')
// const whyDidYouRender = require('@welldone-software/why-did-you-render')
// whyDidYouRender(React, {
// trackHooks: true,
// hotReloadBufferMs: 1000
// })
2021-01-07 19:13:09 +01:00
}
}
export default dev