startedOnOnboarding

This commit is contained in:
neon443
2025-08-27 18:51:41 +01:00
parent 97aba7f818
commit 9cab6baea4
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//
// WelcomeView.swift
// ShhShell
//
// Created by neon443 on 27/08/2025.
//
import SwiftUI
struct WelcomeView: View {
var body: some View {
Text("Welcome")
}
}
#Preview {
WelcomeView()
}