Files
sats-price/SatsPrice/SatsPriceApp.swift
2024-02-20 22:30:10 -05:00

18 lines
226 B
Swift

//
// SatsPriceApp.swift
// SatsPrice
//
// Created by Terry Yiu on 2/19/24.
//
import SwiftUI
@main
struct SatsPriceApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}