Rafał Kuźmiński
02/19/2023, 4:33 PMval Example = FC<FindRouteProps> { props ->
    child(DragDropContext::class) { // compilation error
    }
}val Example = fc<FindRouteProps> { props ->
    child(DragDropContext::class) { // works
    }
}turansky
02/19/2023, 6:28 PM