Skip to content

Toolpad Core

Full stack components
for React |

From the creators of Material UI, Toolpad Core offers the components needed for your next admin panel and internal tools project. Bootstrap from scratch in our CLI with well chosen defaults, or drop Toolpad Core into your existing Next.js or Vite* project.

Features

Components which integrate the full stack

Quickly build admin interfaces with a set of components that are designed to work together.

Navigation and layoutThe Layout component provides a standard structure for functional apps, including customizable nav bar, header bar and more.
AuthenticationOur authentication components help you set up complex authentication flows quickly, without subscription costs.
Page containerSets up breadcrumbs, title, toolbar and a responsive container for your pages.
DialogsToolpad Core exports an imperative API to manage dialogs in your application. System dialogs that adapt to your application theme are also included.
NotificationsWe offer imperative APIs to deal with snackbars an notifications around your application.
const NAVIGATION: Navigation = [
  {
    kind: 'header',
    title: 'Main items',
  },
  {
    segment: 'dashboard',
    title: 'Dashboard',
    icon: <DashboardIcon />,
  },
  {
    segment: 'orders',
    title: 'Orders',
    icon: <ShoppingCartIcon />,
  },
  {
    kind: 'divider',
  },
  {
    kind: 'header',
    title: 'Analytics',
  },
  {
    segment: 'reports',
    title: 'Reports',
    icon: <BarChartIcon />,
    children: [
      {
        segment: 'sales',
        title: 'Sales',
        icon: <DescriptionIcon />,
      },
      {
        segment: 'traffic',
        title: 'Traffic',
        icon: <DescriptionIcon />,
      },
    ],
  },
  {
    segment: 'integrations',
    title: 'Integrations',
    icon: <LayersIcon />,
  },
];

function DashboardLayoutBasic(props: DemoProps) {
  const { window } = props;

  const [pathname, setPathname] = React.useState('/dashboard');

  const router = React.useMemo<Router>(() => {
    return {
      pathname,
      searchParams: new URLSearchParams(),
      navigate: (path) => setPathname(String(path)),
    };
  }, [pathname]);

  const demoWindow = window !== undefined ? window() : undefined;

  return (
    <AppProvider navigation={NAVIGATION} router={router} window={demoWindow}>
      <DashboardLayout>
        <PageContainer>
          <Grid container spacing={2}>
            <Grid size={6}>
              <PlaceHolder height={100} />
            </Grid>
            <Grid size={6}>
              <PlaceHolder height={100} />
            </Grid>
            <Grid size={12}>
              <PlaceHolder height={200} />
            </Grid>
          </Grid>
        </PageContainer>
      </DashboardLayout>
    </AppProvider>
  );
}

Why build with Toolpad?

Leverage the best
in the ecosystem...

React

React

Toolpad is a code-centric approach to admin apps. The entire app is accessible and customizable through React code.

Typesript

TypeScript

TypeScript enhances code maintainability and developer productivity, making it a preferred choice for Toolpad apps.

Next.js

Next.js

Next.js sets the industry standard for modern React applications. Building over it is a leverage that makes Toolpad efficient.

Material UI

Material UI

A tight integration with Material UI ensures you get all the latest features from our list of Material UI components.


Examples

Toolpad Core is ideal for building

Admin app

This app shows you to get started with Toolpad Core and use basic layout and navigation features.View more

Build much more!

Learn how to build these and many other apps using Toolpad Core!Check out docs

Toolpad Studio

Looking for a low-code app builder instead?

Empower your team with Toolpad Studio: a drag-and-drop, low-code platform to effortlessly build UI, connect data, and self-host custom internal tools.