6 ms·
I'm quite fond of a little helper like so: createElement({ className: 'p-2 flex justify-end', contents: createElement({ tag: 'img
by iudqnolq 2y ago
I'm quite fond of a little helper like so:
createElement({
className: 'p-2 flex justify-end',
contents: createElement({
tag: 'img',
src: '/os-logo-maps.svg'
}),
});
I got the idea from Lea Verou's blissfuljs. When you're creating a bunch of nested elements it comes in handy.
- meow_catrix 2y agoThat’s React without the JSX sugar.