expo-web/src/client/components/GitMobile.tsx

28 lines
516 B
TypeScript

import React from 'react';
/**
* @return {jsx} my git links
*/
export default function GitMobile() {
return (
<div
className='
tile-child d-flex
align-items-center
justify-content-center'
id='git'>
<a
href='https://git.gaetanbrochard.dev/gbrochar/expo-web'
className='d-inline btn btn-mine mr-1'>
This project&apos;s git
</a>
<br />
<a
href='https://git.gaetanbrochard.dev/gbrochar'
className='d-inline btn btn-mine ml-1'>
My git
</a>
</div>
);
};