Matias Trujillo

Results 20 comments of Matias Trujillo

Interesting, I have been reading the new React hooks and there is a big difference in Atomico and React task management Atomico manages tasks like islands (webcomponent), so Atomico does...

Excellent!, from [email protected] we can replace the virtualDOM render according to the environment, this allows us: 1. serialize the virtualDOM, strategy already used for SSR/SSG. 2. replace tags with a...

Amazing (Sorry for the delay in my response), I'm going to centralize this in a repo, so we can work on this together

That user is not related to Atomico, but I don't think it's phishing, since the [README](https://github.com/atomicojs/base) file attached to that project is generated by the `npm init atomico` script. I...

Hi, it's been a while, but it would be nice to have your opinion, I have rewritten the Atomico Starter Kit README, I invite you to review it https://github.com/atomicojs/base with...

Hi, this should not be standard, since it is rather a hydration technique that can be easily adopted by any library, [please analyze the example attached in the documentation](https://github.com/mfreed7/declarative-shadow-dom/blob/master/README.md#feature-detection-and-polyfilling), it...

Thank you for your feature, your goals are well documented, I will try to match the scope so that in the future we can create a prototype. Some time ago...

I think the approach of using context to customize appearance is interesting, I personally recommend using customProperties vs the context callack (`color:${(theme)=>theme.color.brand}`), since then the css does not need to...

There is an undocumented functionality in Atomico, for confusions with the SSR, the trick is the following: https://studio.webcomponents.dev/edit/AzdHHrVHCzGQMMbWtkGI/src/theme.jsx?p=stories from the example above highlighted **index.js** ```js myCounter.styles = css` * {...

## Fragment Support Thanks for reminding me, internally Atomico works with fragments, but there is no tag that allows its use at the JSX level, I will work to add...