mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
30 lines
835 B
JavaScript
30 lines
835 B
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import { FacebookButton, TwitterButton, CopyLinkButton } from '../Button';
|
|
import { Container } from './style';
|
|
|
|
export default function ShareButtons() {
|
|
return (
|
|
<Container>
|
|
<FacebookButton
|
|
href="https://www.facebook.com/sharer/sharer.php?u=https://securitycheckli.st"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
Share
|
|
</FacebookButton>
|
|
|
|
<TwitterButton
|
|
href="http://twitter.com/share?text=Check out Security Checklist, a checklist to help people stay safe online&url=https://securitycheckli.st"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
Tweet
|
|
</TwitterButton>
|
|
|
|
<CopyLinkButton text="https://securitycheckli.st">
|
|
Share Link
|
|
</CopyLinkButton>
|
|
</Container>
|
|
);
|
|
}
|