David Ford
David Ford
In react we go like this: ``` const s = { color:"red" } Hello ``` How to do the equivalent in Kotlin React?
Cannot find resource with the requested URI: /frontend/kotlinx-html-js.js.map
This may sound like a stupid question, but it is not obvious how to open this project in intellij. Do we use "Import Project" or "Open". If I choose open,...
In React, we have functional components that look like this: ``` function Welcome(props) { return Hello, {props.name}; } ``` It would be nice to include one of those (in Kotlin...
I upgraded my yarn version and re-ran yarn install. And now I am getting this warning. It's strange, because nothing in my code has changed. Something in node_modules is obviously...
It would be nice to see some guides, docs or examples for a common use-case. That is, the case where I have an existing _JavaScript_ React app and now I...
When I use inline css in an html or jsp file, IntelliJ gives me nice syntax coloring and autocompletion:  Is there a type safe way to do inline css...
TD extends HtmBlockTag while TH extends HtmlInlineTag. Is that correct?
This code: ``` div { onclick = { event -> window.alert("Kotlin!") } } ``` On this doc page: https://github.com/kotlin/kotlinx.html/wiki/Events No longer works.