🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Project 24: Calendar UI

React Engineer
Step 1 of 4
Project

Feature-Based Folders

Add a comment describing the folder layout this file assumes: features/calendar/{components, hooks, api}, everything calendar-related grouped together, rather than one giant top-level components/ folder shared by every unrelated feature. Feature-based structure scales better as an app grows past a handful of screens.

🎯 Your Task

Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!

// Folder layout: features/calendar/{components, hooks, api} — everything this
// feature needs lives together, instead of scattered across one shared top-level
// components/ folder alongside every other unrelated feature.

export default function CalendarPage() {
  return <div>Calendar</div>;
}