diff --git a/awkbd/KeyboardView.swift b/awkbd/KeyboardView.swift new file mode 100644 index 0000000..2c8a6bb --- /dev/null +++ b/awkbd/KeyboardView.swift @@ -0,0 +1,19 @@ +// +// 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() +}