W
Wasp-lang2mo ago
2euxs

Where can I found the select "input template" ?

Where can I found the select "input template" ?
7 Replies
kapa.ai
kapa.ai2mo ago
Hi @2euxs. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- When you are creating a new Wasp project, you will be prompted to select a template. This happens in the interactive mode when you use the wasp new command. Here is how it looks:
$ wasp new
Enter the project name (e.g. my-project) ▸ MyFirstProject
Choose a starter template
[1] basic (default)
Simple starter template with a single page.
[2] todo-ts
Simple but well-rounded Wasp app implemented with Typescript & full-stack type safety.
[3] saas
Everything a SaaS needs! Comes with Auth, ChatGPT API, Tailwind, Stripe payments and more. Check out <https://opensaas.sh/> for more details.
[4] embeddings
Comes with code for generating vector embeddings and performing vector similarity search.
[5] ai-generated
🤖 Describe an app in a couple of sentences and have Wasp AI generate initial code for you. (experimental)
▸ 1

🐝 --- Creating your project from the "basic" template... -------------------------

Created new Wasp app in ./MyFirstProject directory!

To run your new app, do:
cd MyFirstProject
wasp db start
$ wasp new
Enter the project name (e.g. my-project) ▸ MyFirstProject
Choose a starter template
[1] basic (default)
Simple starter template with a single page.
[2] todo-ts
Simple but well-rounded Wasp app implemented with Typescript & full-stack type safety.
[3] saas
Everything a SaaS needs! Comes with Auth, ChatGPT API, Tailwind, Stripe payments and more. Check out <https://opensaas.sh/> for more details.
[4] embeddings
Comes with code for generating vector embeddings and performing vector similarity search.
[5] ai-generated
🤖 Describe an app in a couple of sentences and have Wasp AI generate initial code for you. (experimental)
▸ 1

🐝 --- Creating your project from the "basic" template... -------------------------

Created new Wasp app in ./MyFirstProject directory!

To run your new app, do:
cd MyFirstProject
wasp db start
You can find more details in the Wasp CLI documentation (https://wasp-lang.dev/docs/general/cli#creating-a-new-project). ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @2euxs, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
2euxs
2euxs2mo ago
I meant the select input template . Im trying to find it in the code. @kapa.ai
No description
kapa.ai
kapa.ai2mo ago
Let me check the knowledge base for you. One moment! :books: ---------------------- I'm sorry for the confusion, but based on the provided knowledge sources, there isn't a specific example of a "select input template" in the Wasp code. The knowledge sources provided examples of form inputs like text and checkbox, but not a select input. However, in a typical React component, a select input can be implemented like this:
<select value={this.state.value} onChange={this.handleChange}>
<option value="option1">Option 1</option>
<option value="option2">Option 2</option>
<option value="option3">Option 3</option>
</select>
<select value={this.state.value} onChange={this.handleChange}>
<option value="option1">Option 1</option>
<option value="option2">Option 2</option>
<option value="option3">Option 3</option>
</select>
Please note that this is a general React example and not specific to Wasp. For more specific guidance on implementing select inputs in Wasp, you may want to refer to the official Wasp documentation or their GitHub repository. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @2euxs, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
miho
miho5w ago
What did you screenshot? Which template are you using?
2euxs
2euxs5w ago
Im using the saas template In the admin dashbord, there are templates of buttons, select, texts inputs
miho
miho5w ago
You can find the components just by searching the project for "Multiselect Dropdown" or similar search term
2euxs
2euxs5w ago
Thank you !
Want results from more Discord servers?
Add your server