We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, first of all, thanks for this awesome tool. I'm trying to render expression for each cycle of a loop, but only the last execution is rendered;
For this example, the output will be New post
New post
const posts = [ { id: '1', text: 'Hello world!' }, { id: '2', text: 'New post' } ]; for (let post of posts) { <p>{post.text}</p> }
Currently I need to use the map function to output each value, like this:
<p> { posts.map(post => <p key={post.id}>{post.text}</p>) } </p>
Here an easier example, the output will be 10:
10
for (let i = 0; i <= 10; i++) { i }
It would be great if the expression can be outputted for every loop cycle.
The text was updated successfully, but these errors were encountered:
Thank you, I think it is related:
let fn = setInterval(() => { console.log('not shown') // OK 'not shown' }, 1000) 'shown'
it seems that currently it isn't possible to show in the UI the output of a callback
Sorry, something went wrong.
There's no reasonable way to print any values that are generated in an async manner. The workaround would be to wrap it in a react component
No branches or pull requests
The problem
Hi, first of all, thanks for this awesome tool.
I'm trying to render expression for each cycle of a loop, but only the last execution is rendered;
For this example, the output will be
New post
Currently I need to use the map function to output each value, like this:
Here an easier example, the output will be
10
:It would be great if the expression can be outputted for every loop cycle.
The text was updated successfully, but these errors were encountered: