Skip to content

Commit

Permalink
added missing assignment instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
maxschwarzmueller committed Jan 16, 2023
1 parent 70bb241 commit 8ad6605
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions code/12-adv-starting-project/frontend/src/App.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
// Challenge / Exercise

// 1. Add five new (dummy) page components (content can be simple <h1> elements)
// - HomePage
// - EventsPage
// - EventDetailPage
// - NewEventPage
// - EditEventPage
// 2. Add routing & route definitions for these five pages
// - / => HomePage
// - /events => EventsPage
// - /events/<some-id> => EventDetailPage
// - /events/new => NewEventPage
// - /events/<some-id>/edit => EditEventPage
// 3. Add a root layout that adds the <MainNavigation> component above all page components
// 4. Add properly working links to the MainNavigation
// 5. Ensure that the links in MainNavigation receive an "active" class when active
// 6. Output a list of dummy events to the EventsPage
// Every list item should include a link to the respective EventDetailPage
// 7. Output the ID of the selected event on the EventDetailPage
// BONUS: Add another (nested) layout route that adds the <EventNavigation> component above all /events... page components

function App() {
return <div></div>;
}
Expand Down
Binary file modified extra-files/12-adv-starting-project.zip
Binary file not shown.

3 comments on commit 8ad6605

@sumitpatel1992
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unable to download both frontend &backend API files

@harshitmathur007
Copy link

@harshitmathur007 harshitmathur007 commented on 8ad6605 May 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@maxschwarzmueller I am not able to start backend and frontend project as mentioned in the video lecture. Didn't find the react-frontend and backend-api folder in the ZIP file.
The video link I am following is: https://www.udemy.com/course/react-the-complete-guide-incl-redux/learn/lecture/35733894#overview

@Faiz0developer
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unable to download this project (12-adv-sarting-project).

Please sign in to comment.