10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
type Props = {};
|
||
|
|
||
|
export default ({}: Props) => (
|
||
|
<div className={'sm mx-auto'}>
|
||
|
<span className={'text-5xl'}>{'Alex Mihailov'}</span>
|
||
|
</div>
|
||
|
);
|