You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Drift/client/app/(posts)/expired/page.tsx

12 lines
215 B
TypeScript

"use client"
import Note from "@components/note"
export default function ExpiredPage() {
return (
<Note type="error">
<strong>Error:</strong> The Drift you&apos;re trying to view has expired.
</Note>
)
}