chore(ui): improve template dialog

This commit is contained in:
Zakher Masri
2025-03-11 16:38:13 +03:00
parent 42302fd53d
commit 0028fcffc7
8 changed files with 282 additions and 108 deletions

View File

@@ -1,4 +1,4 @@
import { create } from 'zustand'
import { create } from "zustand";
interface Template {
id: string;
@@ -26,4 +26,4 @@ export const useStore = create<Store>((set) => ({
setTemplates: (templates) => set({ templates }),
githubStars: 0,
setGithubStars: (count) => set({ githubStars: count }),
}))
}));