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