// DB Types
export type User = {
id: string
name: string
email: string
sandbox: Sandbox[]
}
export type Sandbox = {
type: "react" | "node"
bucket: string | null
userId: string