Jofthomas's picture
Jofthomas HF staff
fix imports
14eb533
raw
history blame
368 Bytes
import { Sprite, Stage } from "@pixi/react";
import { useQuery } from "convex/react";
import { api } from "../../convex/_generated/api";
import { Id } from "../../convex/_generated/dataModel";
export const Cloud = ({
worldId
}: {
worldId: Id<"worlds">
}) => {
return (
<img src="/assets/cloud.jpg" className="absolute w-full h-full object-cover" />
)
}