mirror of
https://github.com/plausible/analytics.git
synced 2024-12-01 11:56:19 +03:00
18 lines
421 B
JavaScript
18 lines
421 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import 'url-search-params-polyfill';
|
|
|
|
import Router from './router'
|
|
|
|
const container = document.getElementById('stats-react-container')
|
|
|
|
if (container) {
|
|
const site = {
|
|
domain: container.dataset.domain,
|
|
offset: container.dataset.offset,
|
|
hasGoals: container.dataset.hasGoals === 'true'
|
|
}
|
|
|
|
ReactDOM.render(<Router site={site} />, container);
|
|
}
|