Skip to content

Bookmark Toogle #38

Answered by ThomasF85
mohbusaidy asked this question in Web
Aug 2, 2022 · 1 comments · 1 reply
Discussion options

You must be logged in to vote

Hi,

ich kann bei dir mehrere Fehler beim Kompilieren feststellen. Diese solltest du zuerst beheben, damit die Applikation überhaupt startet:

  1. In den Dateien BookmarkIcon.jsx und NoBookmarkIcon.jsx sind deine Komponenten syntaktisch falsch definiert und exportiert. Du kannst deine Komponenten z.B. so exportieren:
const BookmarkIcon = () => {
  ...
};

export default BookmarkIcon;
  1. In der Product.jsx benutzt du die Variable bookmarked. Die Variable ist aber nicht definiert - ich vermute das war ursprünglich dein Problem. Hier musst du dir überlegen woher die Information in der Variable kommt (sollte sie z.B. als prop übergeben werden?). Du kannst die Zeile hier zunächst auskommentieren, d…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@mohbusaidy
Comment options

Answer selected by ahohnsen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment