Cells/cells/ui/src/net/okennedy/cells/sheet/Cell.scala

12 lines
173 B
Scala

package net.okennedy.cells.sheet
import com.raquo.laminar.api.L._
class Cell(val data: String)
{
val tag =
div(
className("cellBody text"),
data
)
}