19 lines
340 B
TypeScript
19 lines
340 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { recordEvent } from '@woocommerce/tracks';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { initProductScreenTracks } from './shared';
|
|
|
|
const initTracks = () => {
|
|
recordEvent( 'product_edit_view' );
|
|
initProductScreenTracks();
|
|
};
|
|
|
|
if ( productScreen && productScreen.name === 'edit' ) {
|
|
initTracks();
|
|
}
|