File size: 136 Bytes
1e92f2d |
1 2 3 4 5 6 |
const content = await Promise.resolve("hi y'all")
export default function Custom404() {
return <h1 id="content-404">{content}</h1>
}
|
1e92f2d |
1 2 3 4 5 6 |
const content = await Promise.resolve("hi y'all")
export default function Custom404() {
return <h1 id="content-404">{content}</h1>
}
|