import * as React from 'react'; import { Contact, ContactType } from '../../../src/contacts/contacts'; import ContactsButtons from './ContactsButtons'; type Props = {}; const contactMe: Contact[] = [ { id: 'fido_node', type: 'tg' }, { id: 'aleksandr.mihailov@pm.me', type: 'mail' } ]; const socialButtons: Contact[] = [ { id: 'fido_node', type: 'twitter' }, { id: 'michey', type: 'github' }, { id: 'alex-mihailov-870448187', type: 'linkedin' }, { id: 'fido_node', type: 'twitch' } ]; export default ({}: Props) => ( <>
Contact me via:
Social buttons:
);