1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 06:10:32 +05:30
yattee/Shared/VideoView.swift

21 lines
346 B
Swift
Raw Normal View History

2021-07-28 02:56:52 +05:30
//
// VideoView.swift
// VideoView
//
// Created by Arkadiusz Fal on 26/07/2021.
//
import SwiftUI
struct VideoView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct VideoView_Previews: PreviewProvider {
static var previews: some View {
VideoView()
}
}