import { Button, Card, Grid, Icon, IconButton } from '@/components'; import { Mint } from '../../../mint.context'; export const GithubConnect: React.FC = () => { const { setGithubStep } = Mint.useContext(); const handleNextStep = () => { //TODO when we integrate GH login, we'll need to set the step to 2 after login setGithubStep(2); }; return ( } /> } /> After connecting your GitHub, your repositories will show here. ); };