mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
21 lines
346 B
Swift
21 lines
346 B
Swift
|
//
|
||
|
// 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()
|
||
|
}
|
||
|
}
|