If you load up Popcode in a fresh environment and, without making any changes to code, just type a console expression, nothing happens.
This is because we don’t actually render any preview until code is changed. So, there is no preview frame to evaluate the expression.
We should make sure to create an initial compiled project on bootstrap (probably just need to add this to the final case in the applicationBootstrap() saga defined under sagas/projects)
If you load up Popcode in a fresh environment and, without making any changes to code, just type a console expression, nothing happens.
This is because we don’t actually render any preview until code is changed. So, there is no preview frame to evaluate the expression.
We should make sure to create an initial compiled project on bootstrap (probably just need to add this to the final case in the
applicationBootstrap()saga defined undersagas/projects)