Skip to content

Instantly share code, notes, and snippets.

@davidgilbertson
Last active May 28, 2016 06:37
Show Gist options
  • Save davidgilbertson/84af24cdd18bc5ddf5aec107fc088dc1 to your computer and use it in GitHub Desktop.
Save davidgilbertson/84af24cdd18bc5ddf5aec107fc088dc1 to your computer and use it in GitHub Desktop.
import React from 'react';
import Icon from './Icon.jsx';
import {ICONS} from '../../constants';
export default props => (
<div>
<button onClick={() => props.shareVia('faceboook')}>
<Icon icon={ICONS.FACEBOOK} />
</button>
<button onClick={() => props.shareVia('twitter')}>
<Icon icon={ICONS.TWITTER} />
</button>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment