SimpleX-Chat/apps/ios/Shared/Views/Helpers/ChatListNavLink.swift

22 lines
429 B
Swift
Raw Normal View History

//
// ChatListNavLink.swift
// SimpleX
//
// Created by Evgeny Poberezkin on 01/02/2022.
// Copyright © 2022 SimpleX Chat. All rights reserved.
//
import SwiftUI
struct ChatListNavLink: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct ChatListNavLink_Previews: PreviewProvider {
static var previews: some View {
ChatListNavLink()
}
}