BlueWallet/ios/Widgets/PriceWidget/PriceWidgetEntryView.swift
Marcos Rodriguez Velez ee739d347d ADD: Market Price intent
2024-10-27 18:14:37 -04:00

20 lines
336 B
Swift

//
// PriceWidgetEntryView.swift
// BlueWallet
//
// Created by Marcos Rodriguez on 10/27/24.
// Copyright © 2024 BlueWallet. All rights reserved.
//
import SwiftUICore
@available(iOS 14.0, *)
struct PriceWidgetEntryView: View {
let entry: PriceWidgetEntry
var body: some View {
PriceView(entry: entry)
}
}