fido-node.github.io/components/personal-card/elements/Title.tsx

10 lines
186 B
TypeScript
Raw Normal View History

2021-04-28 22:31:42 +03:00
import * as React from 'react';
type Props = {};
export default ({}: Props) => (
<div className={'sm mx-auto'}>
<span className={'text-5xl'}>{'Alex Mihailov'}</span>
</div>
);