Hello, I started recently a compose multiplatform app with all platforms enabled. Currently integrating a database. Went with sqldelight, since it supports almost all platforms. There's just the problem with web, since it doesn't support wasm, but kotlin-js. As far as I'm understanding, kotlin-js doesn't work with compose, just kotlin-multiplatform, right? so I'd have to maintain a dedicated web UI to use sqldelight?
And if yes, what other interesting solutions could there be, was thinking about simply injecting a different database / storage manager for web (so I can keep using compose for it)