UNPKG
react-ga-gtm
Version:
latest (2.5.3-beta)
2.5.3-beta
2.5.2
2.5.2-beta
2.5.1
2.5.1-beta
React Google Analytics Module.
github.com/Tap30/react-ga-gtm
Tap30/react-ga-gtm
react-ga-gtm
/
demo
/
index.jsx
12 lines
(9 loc)
•
211 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
import
{ render }
from
'react-dom'
;
import
App
from
'./app'
;
const
container =
document
.
createElement
(
'div'
);
document
.
body
.
appendChild
(container);
render
(
<
App
/>
, container );