This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState, useEffect } from 'react'; | |
import PropTypes from 'prop-types'; | |
const Pagination = ({ | |
totalItems, | |
itemsPerPage = 10, | |
currentPage = 1, | |
onPageChange, | |
className = '', | |
}) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
choco install chocolatey -y | |
choco install chocolatey-core.extension -y | |
choco install googlechrome -y | |
choco install 7zip.install -y | |
choco install spotify -y | |
choco install git.install -y | |
choco install nodejs.install -y | |
choco install yarn -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
var loja = window.jsnomeLoja, | |
css = $('link[href*="' + loja + '2-style.css"]'), | |
cssHref = css.attr('href'), | |
cssVersion = 1; | |
if( cssHref.indexOf('?v=') >= 0 ){ | |
cssVersion = parseInt(cssHref.match(/v=\d+/)[0].replace('v=','')); | |
cssVersion++; | |
cssHref = cssHref.split('?')[0]; |