16 lines
207 B
Swift
16 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") {
|
|
|
|
}
|
|
}
|
|
}
|