diff options
author | Shav Kinderlehrer <[email protected]> | 2023-12-15 11:06:36 -0500 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2023-12-15 11:06:36 -0500 |
commit | 62a8e5704edb604d41af34df7607adf6492ca855 (patch) | |
tree | d16acc439a63edc096e8abc22320f37e511d082f /Jel/Views/Dashboard/Library | |
parent | 2e3c12fed339c8bf3dc966217cbdf4c385fb98a1 (diff) | |
download | jel-62a8e5704edb604d41af34df7607adf6492ca855.tar.gz jel-62a8e5704edb604d41af34df7607adf6492ca855.zip |
Add blurHash + send passthrough to JellyfinClientController
Diffstat (limited to 'Jel/Views/Dashboard/Library')
-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() +} |