mirror of
https://github.com/stoatchat/for-ios.git
synced 2026-07-20 00:54:08 -04:00
20 lines
289 B
Swift
20 lines
289 B
Swift
//
|
|
// CreateServer.swift
|
|
// Revolt
|
|
//
|
|
// Created by Angelo on 24/08/2024.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
struct CreateServer: View {
|
|
@EnvironmentObject var viewState: ViewState
|
|
@State var name: String = ""
|
|
|
|
var body: some View {
|
|
Text("todo")
|
|
}
|
|
|
|
}
|