-
Notifications
You must be signed in to change notification settings - Fork 13.8k
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
Add new Solid.js example #2144
base: master
Are you sure you want to change the base?
Add new Solid.js example #2144
Conversation
@@ -0,0 +1,31 @@ | |||
import { Switch, useContext } from "solid-js"; |
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.
Import For
?
@@ -0,0 +1,34 @@ | |||
import { For, Show, useContext } from 'solid-js'; |
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.
For
is not being used
@@ -0,0 +1,46 @@ | |||
import { createEffect, createSignal, useContext } from "solid-js"; |
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.
createEffect
not being used
Hi, I created TodoMVC with Solid.js and I think it's worth sharing with y'all, so I'm proposing this to as a new app example.
It passes all the tests as you can see above.
Reason to propose the TodoMVC in Solid.js
Notes