I have a @JsExport'd class marked as @Serializable. However, when I use it in my frontend, I get this error:
Copy code
Unhandled Rejection (SerializationException): Serializer for class 'NewRestaurant' is not found.
Mark the class as @Serializable or provide the serializer explicitly.
My data class:
Copy code
@Serializable @JsExport data class NewRestaurant(val name: String)