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

13 lines
320 B
Kotlin

package net.schueller.peertube.feature_video.presentation.video.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)
}