mirror of
https://github.com/yattee/yattee.git
synced 2024-12-15 06:40:32 +05:30
21 lines
376 B
Swift
21 lines
376 B
Swift
//
|
|
// ServicesSettings.swift
|
|
// Pearvidious
|
|
//
|
|
// Created by Arkadiusz Fal on 23/10/2021.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ServicesSettings: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
struct ServicesSettings_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ServicesSettings()
|
|
}
|
|
}
|