File size: 664 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# Track Component View
`<TrackComponentView />` is a React component used to help track when container components are seen by a user.
This is useful in cases where a container component conditionally renders. If children are
not rendered, this analytics event will not be fired.
## Usage
Render the component passing one or both of:
- Tracks: An `eventName` string and `eventProperties` object
- MC Stats: `statGroup` and `statName` strings
```jsx
<ContainerComponent>
<TrackComponentView eventName={ eventName } eventProperties={ eventProperties } />
</ContainerComponent>;
```
It does not accept any children, nor does it render any elements to the page.
|