Thorium-android-app/app/src/main/java/net/schueller/peertube/feature_video/presentation/video_list/components/VideoChannel.kt

13 lines
325 B
Kotlin

package net.schueller.peertube.feature_video.presentation.video_list.components;
import androidx.compose.material.Text
import androidx.compose.runtime.Composable;
import net.schueller.peertube.feature_video.domain.model.Channel
@Composable
fun VideoChannel(
channel: Channel
) {
Text(text = channel.name)
}