Skip to content

Commit

Permalink
docs(app/docs/components/mega-menu): add examples for <MegaMenu>
Browse files Browse the repository at this point in the history
  • Loading branch information
tulup-conner committed Sep 11, 2023
1 parent 613d6a0 commit 2e19089
Show file tree
Hide file tree
Showing 3 changed files with 541 additions and 0 deletions.
16 changes: 16 additions & 0 deletions app/docs/components/mega-menu/index.tsx
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;
Loading

0 comments on commit 2e19089

Please sign in to comment.