mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-23 15:07:43 +01:00
15 lines
375 B
JavaScript
15 lines
375 B
JavaScript
import React from 'react'
|
|
import { Title } from '../components/Title'
|
|
import { Card } from '../components/Card'
|
|
|
|
export function NotFound(props) {
|
|
return (
|
|
<div className="cardView">
|
|
<Card>
|
|
<Title accent="How did you end up here?">
|
|
Oopsie doopsie
|
|
</Title>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|