12 lines
227 B
JavaScript
12 lines
227 B
JavaScript
![]() |
import React, { PureComponent } from 'react';
|
||
|
|
||
|
export default class PageNotFound extends PureComponent {
|
||
|
render() {
|
||
|
return (
|
||
|
<div className="common-page-not-found">
|
||
|
Page not found.
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|