15 lines
242 B
JavaScript
15 lines
242 B
JavaScript
import React from 'react';
|
|
|
|
export default class extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
static displayName = 'NotFound'
|
|
static propTypes = {}
|
|
componentDidMount() {
|
|
}
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|