We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we use an Atomic Design based taxonomy for describing components:
Atoms
Molecules
Pages
At the Molecule and Pages levels there are often nested components:
Molecule
Pictured, ProfilePage nested components
ProfilePage
Even with efforts to separate concerns there are often circumstances that require passing the same data and methods between nested components.
How might we leverage React's Context API to simplify data passing between nested components?
ProfilePageContext
DOCS
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Should we leverage context API to DRY out non-Atom components?
What's the problem?
Currently we use an Atomic Design based taxonomy for describing components:
Atoms
- the smallest unitMolecules
- components that are a combination ofAtoms
Pages
- components that are a combination ofMolecules
At the
Molecule
andPages
levels there are often nested components:Pictured,
ProfilePage
nested componentsEven with efforts to separate concerns there are often circumstances that require passing the same data and methods between nested components.
Subtasks
ProfilePageContext
that implements context API inProfilePage
DOCS
repoThe text was updated successfully, but these errors were encountered: