All checks were successful
continuous-integration/drone/push Build is passing
Adds a new component for the wallet summary as well, and makes the component tests work with RSpec.
9 lines
143 B
Ruby
9 lines
143 B
Ruby
# frozen_string_literal: true
|
|
|
|
class WalletSummaryComponent < ViewComponent::Base
|
|
def initialize(balance:)
|
|
@balance = balance
|
|
end
|
|
|
|
end
|