You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
269 B

4 years ago
  1. package com.example.playscalajsreact.model
  2. import monocle.macros.Lenses
  3. import japgolly.scalajs.react.Reusability
  4. @Lenses
  5. case class User(username: String)
  6. object User {
  7. def empty = User("")
  8. implicit val reusability: Reusability[User] = Reusability.derive
  9. }