Skip to content

Instantly share code, notes, and snippets.

View kartikag01's full-sized avatar
🎯
Focusing

KARTIK AGARWAL kartikag01

🎯
Focusing
  • Banglore, India
View GitHub Profile
@jaydenseric
jaydenseric / RouteIndicator.js
Last active November 29, 2023 11:34
A route change indicator for Next.js using React hooks.
import classNameProp from 'class-name-prop';
import { useRouter } from 'next/router';
import React from 'react';
import styles from './RouteIndicator.module.css';
const DONE_DURATION = 250;
export default function RouteIndicator() {
const router = useRouter();