diff options
Diffstat (limited to 'iTexSnip/MenuBarView.swift')
-rw-r--r-- | iTexSnip/MenuBarView.swift | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/iTexSnip/MenuBarView.swift b/iTexSnip/MenuBarView.swift new file mode 100644 index 0000000..e785dd4 --- /dev/null +++ b/iTexSnip/MenuBarView.swift @@ -0,0 +1,18 @@ +// +// MenuBarView.swift +// iTexSnip +// +// Created by Navan Chauhan on 10/20/24. +// + +import SwiftUI + +struct MenuBarView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + MenuBarView() +} |