Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
enzostvs
/
deepsite
like
8.67k
Running
App
Files
Files
Community
191
Fetching metadata from the HF Docker repository...
6d265ca
deepsite
/
components
/
contexts
/
user-context.tsx
enzostvs
HF Staff
initial commit
13ae717
13 days ago
raw
Copy download link
history
blame
Safe
173 Bytes
"use client"
;
import
{ createContext }
from
"react"
;
import
{
User
}
from
"@/types"
;
export
const
UserContext
=
createContext
({
user
:
undefined
as
User
|
undefined
,
});