aboutsummaryrefslogtreecommitdiff
path: root/iTexSnip/DetailedSnippetView.swift
blob: bcf9ece73666b5294302812936d18ec806994316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  DetailedSnippetView.swift
//  iTexSnip
//
//  Created by Navan Chauhan on 10/21/24.
//

import SwiftUI

struct DetailedSnippetView: View {
    var body: some View {
        Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
    }
}

#Preview {
    DetailedSnippetView()
}