Sora/Sora-JS/Views/HomeView.swift
2025-01-05 14:26:46 +01:00

16 lines
233 B
Swift

//
// HomeView.swift
// Sora-JS
//
// Created by Francesco on 05/01/25.
//
import SwiftUI
struct HomeView: View {
var body: some View {
Text("Home View")
.font(.largeTitle)
.padding()
}
}