Feature: Notes creation

This commit is contained in:
2025-09-25 19:36:21 +02:00
parent 7b84754bd6
commit 209e08754b
5 changed files with 123 additions and 14 deletions
+16
View File
@@ -0,0 +1,16 @@
//
// NoteEditorScreen.swift
// Peered
//
// Created by Oskar Chybowski on 25/09/2025.
//
import SwiftUI
struct NoteEditorScreen: View {
let note: Note
var body: some View {
TextEditor(text: .constant("eee"))
}
}