useRouter improvement
useRouter used to observe the change of the routes through an immutable object, this is improved and now immutability is not necessary to observe the routes
Before
const router = useMemo(()=>({"/":()=>"home!"}));
useRouter({"/":()=>"home!"});
After
useRouter({"/":()=>"home!"});