mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 21:41:57 +00:00
17 lines
316 B
TypeScript
17 lines
316 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
import { cn } from '@/lib/helper';
|
|
|
|
interface MenuProps {
|
|
children?: ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
const Menu = ({ children, className }: MenuProps) => {
|
|
return (
|
|
<ul className={cn('menu w-full p-0 gap-0.5', className)}>{children}</ul>
|
|
);
|
|
};
|
|
|
|
export default Menu;
|