This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<PrivateRoute exact path="/props-through-render" render={(props) => <PropsPage {...props} title={`Props through render`} />} /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import androidx.recyclerview.widget.AsyncDifferConfig; | |
import androidx.recyclerview.widget.AsyncListDiffer; | |
import androidx.recyclerview.widget.DiffUtil; | |
import androidx.recyclerview.widget.ListUpdateCallback; | |
import androidx.recyclerview.widget.RecyclerView; | |
import org.jetbrains.annotations.NotNull; | |
import org.jetbrains.annotations.Nullable; | |
import java.util.List; | |
import kotlin.jvm.internal.Intrinsics; |