diff options
Diffstat (limited to 'iTexSnip/Views')
-rw-r--r-- | iTexSnip/Views/PreferencesView.swift | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/iTexSnip/Views/PreferencesView.swift b/iTexSnip/Views/PreferencesView.swift index 81a7d38..98eb4b9 100644 --- a/iTexSnip/Views/PreferencesView.swift +++ b/iTexSnip/Views/PreferencesView.swift @@ -9,10 +9,8 @@ import SwiftUI struct PreferencesView: View { var body: some View { - Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + Text("Where are my preferences?!") + .padding() + .frame(width: 300, height: 200) } } - -#Preview { - PreferencesView() -} |