ksylvest/tights

View on GitHub
src/menu_item.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { clsx } from "clsx";
import type { ComponentProps, FC } from "react";

export const MenuItem: FC<ComponentProps<"li">> = (props) => <li {...props} />;