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