Files
freeCodeCamp/common/app/components/NotFound/index.js

15 lines
242 B
JavaScript
Raw Normal View History

2015-06-29 09:50:25 -07:00
import React from 'react';
export default class extends React.Component {
constructor(props) {
super(props);
}
static displayName = 'NotFound'
static propTypes = {}
componentDidMount() {
}
render() {
return null;
}
}