Show logout button on getting started so it's available on mobile

This commit is contained in:
blackle 2017-01-07 18:41:57 -05:00
parent 165df323ae
commit e1ca354956
2 changed files with 5 additions and 3 deletions

View file

@ -13,10 +13,10 @@ const iconStyle = {
marginRight: '5px'
};
const ColumnLink = ({ icon, text, to, href }) => {
const ColumnLink = ({ icon, text, to, href, method }) => {
if (href) {
return (
<a href={href} style={outerStyle} className='column-link'>
<a href={href} style={outerStyle} className='column-link' data-method={method}>
<i className={`fa fa-fw fa-${icon}`} style={iconStyle} />
{text}
</a>