11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
"use client"
|
|
|
|
import { Note, Text } from "@geist-ui/core/dist"
|
|
|
|
export default function ExpiredPage() {
|
|
return (
|
|
<Note type="error" label={false}>
|
|
<h2>Error: The Drift you're trying to view has expired.</h2>
|
|
</Note>
|
|
)
|
|
}
|