Admins
Components
Components
This page shows common Markdown patterns you can use across the docs.
Code Blocks
type User = {
id: string;
name: string;
};
export function greeting(user: User): string {
return `Hello, ${user.name}`;
}Lists
Use lists to break down steps or requirements:
- Install dependencies
- Run the development server
- Open the docs and verify changes
Tables
Tables are useful for prop summaries or feature comparisons:
| Feature | Description | Default |
|---|---|---|
| Sidebar | Navigation column | Enabled |
| Tabs | Section switching | Auto |
| Search | Quick find | Enabled |
Tips
- Keep examples short and focused.
- Prefer runnable snippets where possible.
- Add context before code when the intent is not obvious.