Show logout button on getting started so it's available on mobile
This commit is contained in:
parent
165df323ae
commit
e1ca354956
2 changed files with 5 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue