Skip to content

Instantly share code, notes, and snippets.

View krizh-p's full-sized avatar
🎯
Focusing

krizh-p

🎯
Focusing
View GitHub Profile
@krizh-p
krizh-p / use-multistep-form.tsx
Created June 22, 2025 15:06
A React Hook to create multi-step shadcn forms
import { useCallback, useState } from "react";
type UseFormStepsProps = {
initialSteps: any[];
onStepValidation?: (step: any) => Promise<boolean> | boolean;
};
export type UseMultiFormStepsReturn = {
steps: any[];
@krizh-p
krizh-p / vscode.md
Created June 22, 2025 15:02
VSCode Allow Control+Tab through Tab Groups / Windows

Adding these keys to your vscode will let you control + tab to files open in different tab groups.