opensource-place / frontend

The platform includes open-source projects. You can list all published open-source projects and also add your project on Github to the platform and your projects make open source!
https://opensource.place
MIT License
27 stars 19 forks source link

Issues Counter Component ( UI ) #26

Closed fport closed 3 years ago

fport commented 3 years ago

Figma Design Sheet Screenshot from 2021-01-23 23-35-28

exp

const ProjectCard = ({ repository }) => {
return (
<div>
<div>Repository pathname: {repository.pathname}</div>
<div>Issue count: {repository.issues.length}</div>
</div>
)
}