I'm trying to use soda date time in my Play! scalajs
application.
Soda date time
is imported (without any error) on the client side with
"org.mdedetrich" %%% "soda-time" % "0.0.1-SNAPSHOT"
But when I try to use it, simply like this:
val dateTime = new org.joda.DateTime(new js.Date())
I get the following error:
type DateTime is not a member of package org.joda
I don't see what I'm missing...