Load a webassembly build of the Godot engine and Bootstrap packed games from within the react component tree. Modified to work within NextJS
npm install --save nextjs-godot
import * as React from 'react'
import NextGodot from 'nextjs-godot'
class Example extends React.Component {
render () {
return (
<NextGodot script='/path/to/myGame.js' pck='/path/to/myGame.pck' />
)
}
}