fido-node.github.io/components/personal-card/PersonalCard.tsx

17 lines
413 B
TypeScript
Raw Normal View History

2021-04-28 22:31:42 +03:00
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 '}>
<Avatar imgUrl="./avatar.jpg" />
<Title />
<Description />
<Contacts />
</div>
);