Components

AdminPanel

v1.0.0

Root wrapper for admin takeover pages. Provides the Meteorack layout shell, dark/light theme, and token injection.

Props

children: React.ReactNode

Your admin page content.

title?: string

Page title displayed in the header bar.

Example

AdminPanel.tsx
import { AdminPanel } from '@meteorack/sdk/components';

function App() {
  return (
    <AdminPanel title="My Module">
      <div>Your admin content here</div>
    </AdminPanel>
  );
}