Skip to content

Commit

Permalink
bandit hookup wip
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoe12312 authored and maddie shang committed Jul 12, 2020
1 parent a45ae6a commit 7ffa98f
Show file tree
Hide file tree
Showing 4 changed files with 7,695 additions and 3,066 deletions.
14 changes: 7 additions & 7 deletions examples/multi-armed-bandit/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ const Button = ({ background, icon, onClick }) => (
onClick={onClick}
>
<span css={{ marginRight: 60 }}>Sign Up</span>
{icon === 'arrow' && <i class="fas fa-arrow-right" />}
{icon === 'user' && <i class="fas fa-user-plus" />}
{icon === 'code' && <i class="fas fa-code" />}
{icon === 'arrow' && <i className="fas fa-arrow-right" />}
{icon === 'user' && <i className="fas fa-user-plus" />}
{icon === 'code' && <i className="fas fa-code" />}
</button>
);

Expand Down Expand Up @@ -180,28 +180,28 @@ const Footer = () => {
target="_blank"
css={styles.socialIcon}
>
<i class="fab fa-github" />
<i className="fab fa-github" />
</a>
<a
href="https://twitter.com/openminedorg"
target="_blank"
css={styles.socialIcon}
>
<i class="fab fa-twitter" />
<i className="fab fa-twitter" />
</a>
<a
href="https://youtube.com/c/OpenMinedOrg"
target="_blank"
css={styles.socialIcon}
>
<i class="fab fa-youtube" />
<i className="fab fa-youtube" />
</a>
<a
href="https://facebook.com/openminedorg"
target="_blank"
css={styles.socialIcon}
>
<i class="fab fa-facebook" />
<i className="fab fa-facebook" />
</a>
</div>
</div>
Expand Down
Loading

0 comments on commit 7ffa98f

Please sign in to comment.