You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two ways of referencing/importing <Navbar> sub-components. Either they imported directly from a module or namespaced as an alias off of Navbar itself (similar to the "namespaced" or compound component pattern);
It seems odd that Navbar is a special case where other components are not organized this way (e.g. Menu). Perhaps we should consider dropping this pattern to enforce better organization/consistency among Blueprint components.
The text was updated successfully, but these errors were encountered:
There are two ways of referencing/importing
<Navbar>
sub-components. Either they imported directly from a module or namespaced as an alias off ofNavbar
itself (similar to the "namespaced" or compound component pattern);Imported directly:
blueprint/packages/docs-app/src/examples/core-examples/navbarExample.tsx
Lines 19 to 29 in 37e182e
blueprint/packages/docs-app/src/examples/core-examples/navbarExample.tsx
Lines 53 to 60 in 37e182e
Namespaced:
blueprint/packages/core/src/components/navbar/navbar.md
Lines 9 to 14 in 37e182e
blueprint/packages/core/src/components/navbar/navbar.md
Lines 20 to 27 in 37e182e
blueprint/packages/table-dev-app/src/nav.tsx
Lines 30 to 41 in 37e182e
It seems odd that Navbar is a special case where other components are not organized this way (e.g. Menu). Perhaps we should consider dropping this pattern to enforce better organization/consistency among Blueprint components.
The text was updated successfully, but these errors were encountered: