Skip to content

Instantly share code, notes, and snippets.

View fishactual's full-sized avatar

Fish fishactual

  • Sydney
View GitHub Profile
// Hook
import { useRouter } from 'next/router';
import { useState, useEffect } from 'react';
export const useSyncRouterWithTabs = ({
tabs,
defaultIndex,
}: {
tabs: string[];
defaultIndex?: number;