mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
import React from 'react'
|
|
import Error404 from './404.js'
|
|
|
|
export default class PageIndexer extends React.Component {
|
|
render() {
|
|
const { location } = this.props
|
|
|
|
// By default return Error 404
|
|
return (
|
|
<div>
|
|
<Error404 />
|
|
</div>
|
|
)
|
|
}
|
|
} |