Components
AdminPanel
v1.0.0Root wrapper for admin takeover pages. Provides the Meteorack layout shell, dark/light theme, and token injection.
Props
children: React.ReactNodeYour admin page content.
title?: stringPage 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>
);
}