I am on my Day 2 with RedwoodJS - watched Tom’s videos and the 3 tutorial videos and hooked. Now got started with the quick start tutorial at Quick Start | RedwoodJS Docs
When I ran yarn rw storybook
, I got an empty Storybook page (am I supposed to see anything - sorry I am totally new to Storybook) - can we make it clear with a screenshot like this in the quick start tutorial itself?
When I switched to the console, I noticed a number of errors…When I went back to the terminal to copy the errors, they are all gone - I guess because I ran the jest tests which cleared the terminals - the errors were mostly complaining about storybook was expecting some dependency but found a wrong version - a lot of such messages. For someone totally new to storybook and Redwood, I am not sure whether they are to be ignored or not.
A related question I had is - why can’t we use the existing UserExample for the quick start tutorial - why do we need to copy and paste the Post model (as we do not seem to go very far with the quick start tutorial).
model UserExample {
id Int @id @default(autoincrement())
email String @unique
name String?
}
Sorry if I am asking too many questions in my first post - just thought of conveying the perspective of a new user…