Skip to content

Commit

Permalink
Spacing for try it template buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
zorfling committed Jun 24, 2018
1 parent 508ed9d commit 6b04f5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,19 +128,19 @@ class App extends Component {
</p>
<ul>
<li>
How might a 10% raise affect my income?
How might a 10% raise affect my income?{' '}
<button onClick={this.handleIncomeTemplate(`90000 * 1.1`)}>
Try it
</button>
</li>
<li>
What if I get an extra job paying 500 a week?
What if I get an extra job paying 500 a week?{' '}
<button onClick={this.handleIncomeTemplate(`90000 + 500 * 52`)}>
Try it
</button>
</li>
<li>
If I go 3 days a week, how much will I get paid?
If I go 3 days a week, how much will I get paid?{' '}
<button onClick={this.handleIncomeTemplate(`90000 * 3 / 5`)}>
Try it
</button>
Expand Down

0 comments on commit 6b04f5a

Please sign in to comment.