@ozo/react-rock
Version:
React 移动端开发脚手架,基于CRA3,通用、开箱即用。
20 lines (16 loc) • 405 B
JSX
import React, { Component } from 'react';
import { BasicNotFound } from '@/components';
export default class NotFound extends Component {
static displayName = 'NotFound';
constructor(props) {
super(props);
this.state = {};
}
render() {
return (
<div className="not-found-page">
<BasicNotFound />
</div>
);
}
}