Refactor to use ai/rsc (#253)

This commit is contained in:
Jeremy 2024-03-14 20:00:52 +03:00 committed by GitHub
parent 69ca8fcc22
commit e85ba803dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
66 changed files with 2799 additions and 740 deletions

View file

@ -0,0 +1,22 @@
export const StockSkeleton = () => {
return (
<div className="rounded-xl border border-zinc-800 bg-zinc-950 p-4 text-green-400">
<div className="float-right inline-block w-fit rounded-full bg-zinc-700 px-2 py-1 text-xs text-transparent">
xxxxxxx
</div>
<div className="mb-1 w-fit rounded-md bg-zinc-700 text-lg text-transparent">
xxxx
</div>
<div className="w-fit rounded-md bg-zinc-700 text-3xl font-bold text-transparent">
xxxx
</div>
<div className="text mt-1 w-fit rounded-md bg-zinc-700 text-xs text-transparent">
xxxxxx xxx xx xxxx xx xxx
</div>
<div className="relative -mx-4 cursor-col-resize">
<div style={{ height: 146 }}></div>
</div>
</div>
)
}