20 lines
506 B
TypeScript
20 lines
506 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>
|
||
|
<Header />
|
||
|
<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
|