-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(rendering): Expose createElement #85
feat(rendering): Expose createElement #85
Conversation
3f8ded1
to
7022f3c
Compare
7022f3c
to
bcfa781
Compare
Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
@SophieManley03 For the two suggestions I made you'll need to add imports from |
Thank you Sarah, just did 👌 |
a5e1442
to
11cf12e
Compare
packages/recommend-js/src/__tests__/frequentlyBoughtTogether.test.tsx
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only nitpicks (feel free to apply or not), other than that it looks good to me. Great job!
packages/recommend-js/src/__tests__/frequentlyBoughtTogether.test.tsx
Outdated
Show resolved
Hide resolved
packages/recommend-js/src/__tests__/frequentlyBoughtTogether.test.tsx
Outdated
Show resolved
Hide resolved
packages/recommend-js/src/__tests__/frequentlyBoughtTogether.test.tsx
Outdated
Show resolved
Hide resolved
packages/recommend-js/src/__tests__/frequentlyBoughtTogether.test.tsx
Outdated
Show resolved
Hide resolved
packages/recommend-js/src/__tests__/frequentlyBoughtTogether.test.tsx
Outdated
Show resolved
Hide resolved
…est.tsx Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
…est.tsx Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
…est.tsx Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
…est.tsx Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
…est.tsx Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
Co-authored-by: Sarah Dayan <5370675+sarahdayan@users.noreply.github.com>
This PR exposes
createElement
andFragment
from Preact.Summary
We want to remove the complexity of using JSX for our users using plain Javascript. In order to do that in a unify way accross our librairies, we are doing a similar work to the one done on Autocomplete.js.
This PR will be followed by another one that we allow HTML templating.