Mercurial > public > lazybear
diff LazyBear/Views/Company/Helpers/TransactionList.swift @ 411:681fb377235e
Implementing insider transactions
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Mon, 07 Jun 2021 20:59:52 +0200 |
parents | |
children | a7c9dd0c5822 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear/Views/Company/Helpers/TransactionList.swift Mon Jun 07 20:59:52 2021 +0200 @@ -0,0 +1,20 @@ +// +// TransactionList.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 7/6/21. +// + +import SwiftUI + +struct TransactionList: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct TransactionList_Previews: PreviewProvider { + static var previews: some View { + TransactionList() + } +}