does anyone know which import i need to make the h...
# react
j
does anyone know which import i need to make the hashRouter work in KotlinJS+React project? I've got this in package.json
Copy code
"@jetbrains/kotlin-react-router-dom": "^4.3.1-pre.61",
Copy code
class App : RComponent<RProps, RState>() {
	override fun RBuilder.render() {
		hashRouter {
			switch {
				route("/", IndexPage::class, exact = true)

				}
			}
		}
hashrouter and route i need imports for, but can't find an example that actually includes the imports.