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.
12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
<%= render HeaderComponent.new(title: "Wallet") %>
|
|
|
|
<%= render MainSimpleComponent.new do %>
|
|
<%= render WalletSummaryComponent.new(balance: @balance) %>
|
|
|
|
<section>
|
|
<h3>Transactions</h3>
|
|
|
|
<p>Foo</p>
|
|
</section>
|
|
<% end %>
|