Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
saq1b
/
open-o1
like
0
Build error
App
Files
Files
Community
8dae1b6
open-o1
/
pages
/
_app.tsx
saq1b
Create pages/_app.tsx
79e3cf6
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
187 Bytes
import
type
{
AppProps
}
from
'next/app'
import
'../styles/globals.css'
function
MyApp
(
{ Component, pageProps }: AppProps
) {
return
<
Component
{
...pageProps
} />
}
export
default
MyApp