In-reply-to » @prologic Okay, I'll check it out! πŸ‘

@justamoment@twtxt.net Haha sorry but I’m not a Javascript developer, I really honestly can’t stand the language and all the modern buillshit being added to it over the last few years πŸ€¦β€β™‚οΈ I blame Facebook and Google πŸ˜‚

I’d like to steer clear of things ike JSX, etc. MithrilJS fortunately lets you just write regular things like:

export default function Login (vnode) {
  const { context } = vnode.attrs;

  return {
    view: function () {
      return m("twt-login",
        m("form", [
          m("input", {"type":"text","placeholder":"Username"}),
...

πŸ‘Œ

​ Read More