Initial commit with files

Still need to fix the imports
This commit is contained in:
Ryan Gossiaux
2021-12-13 17:13:47 -08:00
parent 42aba8a158
commit db9ec57065
56 changed files with 4034 additions and 0 deletions

8
src/lib/hooks/use-id.ts Normal file
View File

@@ -0,0 +1,8 @@
let id = 0
function generateId() {
return ++id
}
export function useId() {
return generateId()
}