Skip to content

Instantly share code, notes, and snippets.

View HOSS11H's full-sized avatar
🕶️
Focusing

HOSSAM SAID HOSS11H

🕶️
Focusing
View GitHub Profile
@HOSS11H
HOSS11H / search.tsx
Created October 9, 2023 18:17
URL State
'use client';
import { MagnifyingGlassIcon } from '@heroicons/react/24/outline';
import { createUrl } from 'lib/utils';
import { useRouter, useSearchParams } from 'next/navigation';
export default function Search() {
const router = useRouter();
const searchParams = useSearchParams();