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

14 lines
332 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.Category
@Composable
fun VideoCategory(
category: Category
) {
Text(text = category.label)
}