CoastalCommitsPastes/client/app/(posts)/expired/page.tsx

12 lines
241 B
TypeScript
Raw Normal View History

2022-11-10 02:11:36 -05:00
"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&apos;re trying to view has expired.</Text>
</Note>
)
}