ksylvest/tights

View on GitHub
src/pagination_item.tsx

Summary

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

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