mirror of
https://github.com/neon443/RNG_Swift.git
synced 2026-03-11 06:49:12 +00:00
19 lines
261 B
Swift
19 lines
261 B
Swift
//
|
|
// PasswordView.swift
|
|
// RNG
|
|
//
|
|
// Created by Nihaal on 30/05/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct PasswordView: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
PasswordView()
|
|
}
|