mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import React from 'react';
|
|
import whyDidYouRender from '@welldone-software/why-did-you-render';
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
whyDidYouRender(React, {
|
|
trackAllPureComponents: true,
|
|
});
|
|
}
|