Initial commit

This commit is contained in:
2024-02-19 01:58:22 -05:00
commit adac2bcd64
40 changed files with 2164 additions and 0 deletions

View File

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