feat(kitty): provide id in context

This commit is contained in:
Pihkaal
2024-05-30 23:53:24 +02:00
parent 9c4eaff5f4
commit 186580cccb
2 changed files with 4 additions and 4 deletions

View File

@@ -7,5 +7,5 @@ export const KittyContext = createContext<KittyContextProps | undefined>(
export type KittyContextProps = {
rows: number;
cols: number;
active: boolean;
id: string;
};