Portfolio website written with Next.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
wychdev-nextjs/components/repoCard.tsx

19 lines
336 B

import styled from "styled-components"
const RepoCardCont = styled.div`
display: flex;
h3 a {
color: var(--fg);
}
`
const RepoCard = (props: any) => { // TODO: make schema
return (
<RepoCardCont key={props.id}>
<h3><a href={props.url} target="_blank">{props.name}</a></h3>
</RepoCardCont>
)
}
export default RepoCard