Slide 28
Slide 28 text
State(Kotlin)
interface AppState: RState {
var todoList: MutableList
var countTodo: Int
}
class App : RComponent() {
override fun AppState.init() {
todoList = mutableListOf(
Todo(1, "Hello, React!", "React始めました"),
Todo(2, "Hello, Redux!", "Reduxも始めました")
)
}
override fun RBuilder.render() { ... }
}