17 lines
207 B
Swift
17 lines
207 B
Swift
|
//
|
||
|
// BaseButton.swift
|
||
|
// RNPlayground
|
||
|
//
|
||
|
// Created by Artur Gurgul on 02/08/2025.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct BaseButton: View {
|
||
|
var body: some View {
|
||
|
Button("SwiftUI Button") {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|