First, you need to import a component to your code (сheck component path is right):
import NavBar from "../../core/NavBar";
To use the component, copy and paste an example from the CODE tab.
Default props of component can be omitted, they are applied automatically. For example, you can skip the prop type='def', because 'def' is the default value of prop 'type'.
import NavbarGroup from "../../core/Navbar/group.jsx";These components are simple containers for their children. Each of them supports the full range of HTML div props.
import NavbarHeading from "../../core/Navbar/heading.jsx";
import NavbarDivider from "../../core/Navbar/divider.jsx";
type
view
color
className
fixedToTop
< Navbar type = 'tablet' view = 'smooth' color = 'primary'> < NavbarGroup align = 'left' > < NavbarHeading > Logo < NavbarHeading / > < / NavbarGroup > < NavbarDivider /> < NavbarGroup align = 'right' > Links < / NavbarGroup > < / Navbar >