mirror of https://github.com/MaxLeiter/Drift
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.
19 lines
483 B
TypeScript
19 lines
483 B
TypeScript
import Header from "@components/header"
|
|
import { Note, Page, Text } from "@geist-ui/core"
|
|
import styles from '@styles/Home.module.css'
|
|
|
|
const Expired = () => {
|
|
return (
|
|
<Page>
|
|
<Page.Content className={styles.main}>
|
|
<Note type="error" label={false}>
|
|
<Text h4>Error: The Drift you're trying to view has expired.</Text>
|
|
</Note>
|
|
|
|
</Page.Content>
|
|
</Page>
|
|
)
|
|
}
|
|
|
|
export default Expired
|