Alternative to react-select
Hello is there some alternative to react-select with fresh? I don't find any working with preact/fresh did you have some hints?
1 Reply
I'm sorry, but the documentation does not provide a specific alternative to
react-select
for use with Fresh. However, Fresh uses Preact for rendering and templating on both the server and the client, so you might want to look for Preact-compatible libraries or components that provide similar functionality to react-select
.
Remember that Fresh is designed to send zero JavaScript to clients by default, with the developer explicitly opting in to client-side rendering for specific components. So, any alternative you choose should align with this philosophy for the best performance. 🦕