fix: move puffs map to own container

This commit is contained in:
Simon Emanuelsson
2024-02-12 16:43:46 +01:00
parent d174b12431
commit 93089289b5
8 changed files with 25 additions and 13 deletions

View File

@@ -0,0 +1,6 @@
import type { Node } from "@/types/requests/utils/edges"
import type { Puff } from "@/types/requests/puff"
export type PuffsProps = {
puffs: Node<Puff>[]
}