BMAD-METHOD/.claude/rules/nextjs-react-tailwind-curso.../private-vs-shared-component...

6 lines
419 B
Plaintext

---
description: Rules for determining if a component should be private or shared, and where to place them based on their use-case.
globs: src/**/*
---
- Private Components: For components used only within specific pages, you can create a _components folder within the relevant /app subdirectory.
- Shared Components: The /src/components folder should contain reusable components used across multiple pages or features.