21 lines
290 B
Swift
21 lines
290 B
Swift
//
|
|
// FirstLaunchScheduleView.swift
|
|
// Schedule ICTIS
|
|
//
|
|
// Created by Mironov Egor on 06.12.2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct FirstLaunchScheduleView: View {
|
|
var body: some View {
|
|
VStack () {
|
|
Spacer()
|
|
}
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
FirstLaunchScheduleView()
|
|
}
|