summaryrefslogtreecommitdiff
path: root/Jel/Views/Dashboard/Library/LibraryIconView.swift
blob: 4f6c711993799c984a04d2236ff0f23e98b56b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  LibraryIconView.swift
//  Jel
//
//  Created by zerocool on 12/15/23.
//

import SwiftUI

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

#Preview {
    LibraryIconView()
}