const ChevronIcon = `export const ChevronIcon = (props) => ( ); `; const App = `import {usePagination, PaginationItemType} from "@nextui-org/react"; import {ChevronIcon} from "./ChevronIcon"; export default function App() { const {activePage, range, setPage, onNext, onPrevious} = usePagination({ total: 6, showControls: true, siblings: 10, boundaries: 10, }); return (

Active page: {activePage}

); }`; const react = { "/App.jsx": App, "/ChevronIcon.jsx": ChevronIcon, }; export default { ...react, };