npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@molecule/app-shell-layout-react

v1.0.1

Published

Top-level app shell layout: header slot + main content (typically <Outlet />) + footer slot

Downloads

618

Readme

@molecule/app-shell-layout-react

Auto-generated, AI-first package reference for the molecule.dev ecosystem. It is written to be read by coding agents as much as by people, and is generated from this package's source — edit src/index.ts JSDoc, not this file.

React top-level app shell layout.

Exports <AppShellLayout> — header + main content + footer, with the page frame styled via the ClassMap bond. Apps fill the slots with their own Header, Footer, and route content (typically <Outlet />).

Quick Start

import { AppShellLayout } from '@molecule/app-shell-layout-react'
import { Outlet } from 'react-router'

import { AppFooter } from './AppFooter.js'
import { AppHeader } from './AppHeader.js'

export function Shell() {
  return (
    <AppShellLayout header={<AppHeader />} footer={<AppFooter />} maxWidth="xl">
      <Outlet />
    </AppShellLayout>
  )
}

Type

feature

Installation

npm install @molecule/app-shell-layout-react @molecule/app-react @molecule/app-ui @molecule/app-ui-react react
npm install -D @types/react

API

Interfaces

AppShellLayoutProps

Props accepted by the {@link AppShellLayout} component.

interface AppShellLayoutProps {
  /** Slot for the header (typically the app's `<Header />`). */
  header?: ReactNode
  /** Slot for the footer (typically the app's `<Footer />`). */
  footer?: ReactNode
  /** Main content. Pass `<Outlet />` from `react-router-dom` for routed apps. */
  children: ReactNode
  /** Container max-width for the main content. Defaults to `'xl'`. */
  maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full' | string
  /** Extra classes on the outer wrapper. */
  className?: string
  /**
   * Extra classes on the inner `<main>` element. Apps that need
   * vertical rhythm around the routed content (e.g. `cm.sp('py', 8)`)
   * pass it here instead of forking the shell. Omitted by default so
   * the `<main>` carries no padding.
   */
  mainClassName?: string
  /** `data-mol-id` for AI-agent selectors. */
  dataMolId?: string
}

Functions

AppShellLayout(props)

Top-level page scaffold: header → main (constrained by Container) → footer.

The page frame uses ClassMap tokens (cm.page, cm.appLayout) so the styling library can be swapped without touching consumers. The header and footer are slot props so consumers retain full control over branding, navigation, and footer copy.

function AppShellLayout({
  header,
  footer,
  children,
  maxWidth = 'xl',
  className,
  mainClassName,
  dataMolId,
}: AppShellLayoutProps): JSX.Element
  • props — Component props (see {@link AppShellLayoutProps}).

Injection Notes

Requirements

Peer dependencies:

  • @molecule/app-react ^1.0.1
  • @molecule/app-ui ^1.0.1
  • @molecule/app-ui-react ^1.0.1
  • react ^18.0.0 || ^19.0.0

Runtime Dependencies

  • @molecule/app-react

  • @molecule/app-ui

  • @molecule/app-ui-react

  • react

  • Requires a bonded ClassMap (frame uses cm.page + cm.appLayout) — rendering throws otherwise. No i18n or router dependency; <Outlet /> is just the typical child — any content works.

  • The <main> carries no padding by default — pass mainClassName (e.g. cm.sp('py', 8)) for vertical rhythm around routed content.

  • Header/footer slots render as-is with no positioning — make your header sticky yourself if desired.

  • Sibling: @molecule/app-sidebar-layout-react is the left-sidebar shell (router-coupled); THIS package is the top header/footer shell.