15 lines
227 B
Swift
15 lines
227 B
Swift
//
|
|
// ContentView.swift
|
|
// WatchRunner Watch App
|
|
//
|
|
// Created by LittleSheep on 2025/10/28.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
// The root view of the app.
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
ExploreView()
|
|
}
|
|
} |