You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
268 B
TypeScript

import React from 'react'
export interface RepoItemProps {
name:string
star_count:number|null,
fork_count:number|null
}
export default function RepoItem (props:RepoItemProps) {
return <li>{props.name} - 🌟{props.star_count} - 🍴{props.fork_count}</li>
}