From 5b44a1f2c9b57cc8416e267b7772aeb9370ae067 Mon Sep 17 00:00:00 2001 From: Lumaa Date: Thu, 4 Jan 2024 22:17:25 +0100 Subject: [PATCH] More todos --- Threaded/AppDelegate.swift | 13 +++++++++++++ Threaded/Components/PostAttachment.swift | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 Threaded/AppDelegate.swift create mode 100644 Threaded/Components/PostAttachment.swift diff --git a/Threaded/AppDelegate.swift b/Threaded/AppDelegate.swift new file mode 100644 index 0000000..42fd563 --- /dev/null +++ b/Threaded/AppDelegate.swift @@ -0,0 +1,13 @@ +//Made by Lumaa + +import SwiftUI + +struct AppDelegate: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + AppDelegate() +} diff --git a/Threaded/Components/PostAttachment.swift b/Threaded/Components/PostAttachment.swift new file mode 100644 index 0000000..001b229 --- /dev/null +++ b/Threaded/Components/PostAttachment.swift @@ -0,0 +1,13 @@ +//Made by Lumaa + +import SwiftUI + +struct PostAttachment: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + PostAttachment() +}