UNPKG
nexshop-web-skeleton
Version:
latest (0.147.4)
0.147.4
0.147.2
0.146.0
0.143.2
0.142.0
0.138.0
0.135.1
0.135.0
0.131.0
0.129.2
0.129.1
0.129.0
0.128.3
0.128.2
0.127.1
0.127.0
0.126.5
0.126.3
0.126.2
0.126.1
0.125.0
0.124.4
0.122.0
0.121.1
0.117.4
0.117.3
0.117.0
0.116.1
0.115.0
0.113.0
0.111.7
0.111.6
0.111.5
0.111.3
0.111.2
0.110.0
0.105.2
0.104.0
0.101.0
0.100.0
0.99.3
0.99.2
0.99.1
0.99.0
0.98.1
0.98.0
0.96.4
0.95.0
0.94.1
0.94.0
0.89.0
0.87.0
0.86.2
0.83.0
0.80.0
0.78.0
0.75.6
0.75.5
0.75.4
0.75.3
0.75.1
0.73.2
0.73.0
0.72.0
0.71.1
0.71.0
0.68.0
0.67.3
0.67.2
0.66.8
0.66.7
0.66.6
0.65.0
0.60.5
0.60.4
0.60.1
0.60.0
0.58.2
0.56.8
0.56.6
Nexshop Web Skeleton Project
nexshop-web-skeleton
/
src
/
component
/
not-found.js
11 lines
(10 loc)
•
217 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
, {
Component
}
from
'react'
;
export
default
class
NotFound
extends
Component
{
render
(
) {
return
(
<
div
>
Oops! page not found!!
</
div
>
); } }