diff options
Diffstat (limited to 'Jel/Views/Dashboard')
-rw-r--r-- | Jel/Views/Dashboard/Library/LibraryIconView.swift | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Jel/Views/Dashboard/Library/LibraryIconView.swift b/Jel/Views/Dashboard/Library/LibraryIconView.swift new file mode 100644 index 0000000..4f6c711 --- /dev/null +++ b/Jel/Views/Dashboard/Library/LibraryIconView.swift @@ -0,0 +1,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() +} |