20 lines
323 B
Swift
20 lines
323 B
Swift
//
|
|
// KeyboardView.swift
|
|
// AllenWrench
|
|
//
|
|
// Created by Elizabeth Cray on 1/10/25.
|
|
// Copyright © 2025 Cray. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct KeyboardView: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
KeyboardView()
|
|
}
|