This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Description
Keys are important when dealing with lists:
The initial idea for support is to introduce another annotation @RKey which can annotate any non-lambda parameter. The toString() value of this parameter will be used as the key of the component as long as it is non-null. Something like the following.
@RFunction
fun RBuilder.ListItem(@RKey item: Item) {
...
}