import { GitSelect } from '../../../../types'; const GitSelectionSection = ({ gitSelectionHandler, }: { gitSelectionHandler: (git: GitSelect) => void; }) => { return ( <>
{ gitSelectionHandler(GitSelect.GITHUB); }} >
^
Github
{'>'}
{/*
{}} >
^
Gitea
{'>'}
*/} ); }; export default GitSelectionSection;