Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
victor
/
sveltekit-supabase
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c95db22
sveltekit-supabase
/
src
/
routes
/
+page.ts
victor
HF Staff
init
c95db22
almost 2 years ago
raw
Copy download link
history
blame
Safe
181 Bytes
import
{ supabase }
from
'$lib/supabaseClient'
;
export
async
function
load
(
) {
const
{ data } =
await
supabase.
from
(
'countries'
).
select
();
return
{
countries
: data ?? []
};
}