fido-node.github.io/components/personal-card/PersonalCard.tsx
2021-04-28 22:46:04 +03:00

17 lines
417 B
TypeScript

import * as React from 'react';
import Avatar from './elements/Avatar';
import Contacts from './elements/Contacts';
import Description from './elements/Description';
import Title from './elements/Title';
type Props = {};
export default ({}: Props) => (
<div className={'flex flex-col sm mx-auto lg:w-1/3 pt-12'}>
<Avatar imgUrl="./avatar.jpg" />
<Title />
<Description />
<Contacts />
</div>
);