secant-ios-wallet/secant/ContentView.swift

23 lines
393 B
Swift

//
// ContentView.swift
// secant
//
// Created by Francisco Gindre on 7/29/21.
//
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, Zcash!")
.font(FontFamily.Zboto.regular.textStyle(.body))
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}