Colt / react-colors

Clone of Flat UI Colors, made for my Modern React Bootcamp Course
207 stars 234 forks source link

Forgot to make 404 not found page #2

Open ChaoTzuJung opened 5 years ago

ChaoTzuJung commented 5 years ago

If I type wrong url, I will git error on page EX: http://localhost:3000/palette/&@#$%%

螢幕快照 2019-06-24 下午5 13 36

https://github.com/Colt/react-colors/blob/c358775e0e23e32f47085df1fefc34e38ab0b6be/colors-app/src/App.js#L21-L25

Maybe it could write this to fix issue

  findPalette = id => {
    const defaultPalette = colorsConfig[0];
    return this.state.palettes.find(palette => palette.id === id) || defaultPalette;
  }