UNPKG

create-nova-vite-template

Version:

This is a dashboard template built with React and Vite. It provides a modern and responsive user interface for building web applications.

6 lines (4 loc) 187 B
/* eslint-disable @typescript-eslint/no-explicit-any */ const isLastIndex = ({ index, list }: { index: number; list: any[] }) => index === list.length - 1; export default isLastIndex;