You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't forget about adding little bits to your readme as you go. Otherwise it can be useful to make sure that you take notes as you go so that you can put them all together
There's only a few days left - and that's totally fine! I would suggest getting together as a group and trying to decide on what your (achievable) priorities are before the handover. You can then create issues for each, and try to estimate times for each task - it's hard, and probably won't be accurate, but it's worth trying. I'd love to briefly hear about what you all decide to focus on.
Husky/Lint-staged look great! They're in the dependencies section, but looks like they might be better in the dev dependencies.
'react-dnd-html5-backend' might not be a necessary module since according to the npm page: "** NOTE: React-Dnd has been restructured as a monorepo. This code has been merged into the the react-dnd main repository."
Naming styled-components
We just started using this convention for naming styled components and found that it helps a lot to keep things more consistent:
import Header from ‘Components/Header’;
import * as S from ‘./styles';
const Navigation = () => (
<S.Navigation>
<Header>{headerContent}</Header>
<S.Content>{content}</S.Content>
</S.Navigation>
);
For more: https://medium.com/inturn-eng/naming-styled-components-d7097950a245
The text was updated successfully, but these errors were encountered: