mirror of
https://github.com/kiwix/kiwix-apple.git
synced 2025-08-05 13:37:06 -04:00
14 lines
176 B
Swift
14 lines
176 B
Swift
// Copyright © 2023 Kiwix.
|
|
|
|
import SwiftUI
|
|
|
|
struct LoadingView: View {
|
|
var body: some View {
|
|
Text("Loading...".localized)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
LoadingView()
|
|
}
|