import { Link } from 'react-router-dom' import styles from './Inventory.module.css' import { PrimitivesSection } from './sections/PrimitivesSection' import { CompositesSection } from './sections/CompositesSection' import { LayoutSection } from './sections/LayoutSection' const NAV_ITEMS = [ { label: 'Primitives', href: '#primitives' }, { label: 'Composites', href: '#composites' }, { label: 'Layout', href: '#layout' }, ] export function Inventory() { return (

Component Inventory

← Back to app
) }