Steve Sewell

Results 164 comments of Steve Sewell

One thing I've been thinking we need that would help this is something like an `onInit` hook, like something that lets you run code immediately, before mount, e.g. like ```tsx...

Oh funny I didn't realize we already had it, but yeah we can do all this setup in that if in the right place

ah interesting, so the one thing I like about not having the deps first is many frameworks don't need it, e.g. solidjs, qwik, vue, etc all don't need deps. so...

Awesome experiment, and great catch! We do nothing special for whitespace normalization currently (as you've discovered), but very solvable

Well so the benefit of JSX lite is it is more restrictive than plain JSX, we enforce this at the compiler level as well as have an eslint plugin to...

So that is the components choice. JSX Lite does not assume you want any props to be attributes, you choose what should be. A common pattern in React land for...

Yeah so your point above is why imo I never actually use that pattern either, and always opt to only supporting explicit args to components. We have planned to allow...

Ah yes I see. so at the moment JSX lite will enforce that in your example, all key/value pairs will be treated as `@arg`, so for example ``` ``` would...

When you say “inspect the dom”, are you referring to the builder preview? The preview uses a wrapper just for the visual editor to work. It should not be in...

Hey @WebReflection I still think there is some confusion here. When editing visually with Builder.io, we rap the editable region in a . But Mitosis will never output code to...