DEV Community

Discussion on: Git board - A dashboard build using React in two days from scratch.

Collapse
 
dabit_coder profile image
David Oliva Tirado • Edited

First of all, congrats for the project! Its a good idea and it looks nice.
I imagine you are still working on it, but you have several console.logs in your code.

Also,I have some improvements:

  1. It would be nice to use some destructuring. For example, you always use React.Component. In your import, you can do the following: import React, {Component} from 'react'.

  2. In your components/ContactChip you declared function ContactChip. You can create just a const contactChip = props => and do the same. It happens the same in Header and other components

  3. I don't know if is intended but there is an empty Footer.jsx.

Collapse
 
karkranikhil profile image
Nikhil karkra

Hi David,
Yeah, it's not completed because I am planning to migrate the same using Graphql.
There are many things to clean up. I LL do it soon.

Thanks for your feedback and time
Cheers !!