mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
20 lines
336 B
Swift
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)
|
|
}
|
|
}
|