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

11 lines
240 B
Kotlin

package net.schueller.peertube.feature_video.presentation.video_list.components;
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
@Composable
fun VideoTag(
tag: String
) {
Text(text = tag)
}