-
-
Notifications
You must be signed in to change notification settings - Fork 429
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(app/docs/components/mega-menu): add examples for
<MegaMenu>
- Loading branch information
1 parent
613d6a0
commit 2e19089
Showing
3 changed files
with
541 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
'use client'; | ||
|
||
import type { FC } from 'react'; | ||
import { DocsContentLayout } from '~/app/components/docs-content-layout'; | ||
import MegaMenuDocs from './mega-menu.mdx'; | ||
|
||
const MegaMenuPage: FC = () => ( | ||
<DocsContentLayout | ||
title="React Mega Menu - Flowbite" | ||
description="Use the mega menu component as a full-width dropdown inside the navbar to show a list of menu items based on multiple sizes, variants, and styles" | ||
> | ||
<MegaMenuDocs /> | ||
</DocsContentLayout> | ||
); | ||
|
||
export default MegaMenuPage; |
Oops, something went wrong.