mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-29 04:39:53 +00:00
22 lines
429 B
Swift
22 lines
429 B
Swift
|
//
|
||
|
// 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()
|
||
|
}
|
||
|
}
|