Core Components #2978
-
I'm new to React/Next/Blitz so please forgive me for the naive question. In the core components folder there's a LabeledTextField which can be used for text, password, email, and number. What about: Do I have to create them myself? What am I missing? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey! Glad to have you checking out Blitz! So Blitz is meant to help you build full-stack apps easily — it has some stuff like database, auth, linter, test runner set up out of the box, or it can generate some code for you, lets you install recipes, etc. You can read more about Blitz features in the docs: https://blitzjs.com/docs/get-started. We also have a few recipes in Blitz, that let you install them easily by running, for example, |
Beta Was this translation helpful? Give feedback.
Hey! Glad to have you checking out Blitz!
So Blitz is meant to help you build full-stack apps easily — it has some stuff like database, auth, linter, test runner set up out of the box, or it can generate some code for you, lets you install recipes, etc. You can read more about Blitz features in the docs: https://blitzjs.com/docs/get-started.
However, Blitz doesn't export UI components. There is
LabeledTextField
orForm
in the new app template to have sample login/signup forms provided out of the box, but apart from that, we don't focus on the UI elements.For ready-to-use components, you can use some UI libraries, e.g. https://tailwindui.com/, https://mui.com/, and so on (there are plenty…