Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lenson78
/
codex-proxy
like
0
Paused
App
Files
Files
Fetching metadata from the HF Docker repository...
main
codex-proxy
/
web
/
src
/
main.tsx
icebear0828
feat: migrate dashboard to Preact + Vite
b7d4394
about 1 month ago
raw
Copy download link
history
blame
135 Bytes
import
{ render }
from
"preact"
;
import
{
App
}
from
"./App"
;
import
"./index.css"
;
render
(
<
App
/>
,
document
.
getElementById
(
"app"
)!);