21 lines
404 B
JavaScript
21 lines
404 B
JavaScript
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import {Buffer} from "buffer";
|
|
import { HashRouter as Router } from 'react-router-dom'
|
|
import App from './App'
|
|
|
|
globalThis.Buffer = Buffer
|
|
|
|
BigInt.prototype.toJSON = function() {
|
|
return this.toString()
|
|
}
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<Router>
|
|
<App />
|
|
</Router>
|
|
</React.StrictMode>,
|
|
document.getElementById('root')
|
|
)
|