import styled from "styled-components" const RepoCardCont = styled.div` display: flex; h3 a { color: var(--fg); } ` const RepoCard = (props: any) => { // TODO: make schema return (

{props.name}

) } export default RepoCard