Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
enzostvs/space-shuffler
DeathDaDev
/
space-browser
like
0
Sleeping
App
Files
Files
Community
e45f8c3
space-browser
/
app
/
actions.ts
enzostvs
HF staff
initial commit
f70bb71
4 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
"use server"
import
{ fetchSpaceRandomly }
from
"@/utils/network"
export
const
getSpace
=
async
(
) => {
const
space =
await
fetchSpaceRandomly
();
return
space;
}