↳
In-reply-to
»
(#32wwwza) @prologic Okay, I'll check it out! π
β€ Read More
@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"}),
...
π