### RemoteAppCardSample
```kotlin
@Composable
fun RemoteAppCardSample(modifier: RemoteModifier = RemoteModifier) {
    RemoteAppCard(
        onClick = Action.Empty,
        appName = { RemoteText("App Name".rs) },
        time = { RemoteText("now".rs) },
        title = { RemoteText("App Card Title".rs) },
    ) {
        RemoteText("This is a sample App Card.".rs)
    }
}
```