Spaces:
Sleeping
Sleeping
File size: 368 Bytes
df2ef4f 14eb533 df2ef4f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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" />
)
}
|