Created
March 27, 2022 07:45
-
-
Save takahirom/f24998a8b1c3d49947f8bf91f9dfabba to your computer and use it in GitHub Desktop.
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
@Stable | |
data class UiModel(val articles: Articles) | |
@Composable | |
fun Composable2(uiModel: UiModel) { | |
Text(text = "Hello $uiModel!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment