//
//  ContentView.swift
//  Mini-SwiftUI-Project-Alert
//
//  Created by WilliamJiamin on 2024/6/18.
//

import SwiftUI

struct ContentView: View {
    @State private var isShowingAlert = false

    var body: some View {
        VStack {
            Button("Trigger Alert") {
                isShowingAlert = true
            }
            .alert("Alert!!!", isPresented: $isShowingAlert) {

            }
        }
        .padding()
    }
}

#Preview {
    ContentView()
}