view LazyBear/Views/Global Helpers/RenameAction.swift @ 417:5f21f7c23c5e

Add comments and clean code
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Fri, 11 Jun 2021 11:37:42 +0200
parents dc48cf87ded9
children
line wrap: on
line source

//
//  RenameAction.swift
//  LazyBear
//
//  Created by Dennis Concepción Martín on 24/4/21.
//

import SwiftUI

struct RenameAction: View {
    var body: some View {
        Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
    }
}

struct RenameAction_Previews: PreviewProvider {
    static var previews: some View {
        RenameAction()
    }
}