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