mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-24 04:33:10 +00:00
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
class TopLevelRoute extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
SharedApplicationState.recordEvent(
|
|
'ExampleComponent'
|
|
);
|
|
}
|
|
}
|