1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00

use a button instead of link

This commit is contained in:
sveisvei 2016-10-25 10:49:15 +02:00
parent ab64d7eb1c
commit 30ce9abc60

View File

@ -1,5 +1,6 @@
import React, { PropTypes } from 'react';
import SelectStrategies from './select-strategies-container';
import Button from 'react-toolbox/lib/button';
class AddStrategiesToToggle extends React.Component {
constructor () {
@ -32,7 +33,7 @@ class AddStrategiesToToggle extends React.Component {
renderAddLink () {
return (
<div>
<a href="#" onClick={this.showConfigure}>Add strategy</a>
<Button icon="add" accent onClick={this.showConfigure}>Add strategy</Button>
</div>
);
}