atsid/gcal-leave-scraper

View on GitHub
client/components/NoMatch.js

Summary

Maintainability
A
0 mins
Test Coverage
const React = require('react');

const NoMatch = React.createClass({
  getInitialState() {
    return {};
  },

  render() {
    return (<h1>No such page!</h1>);
  },
});

module.exports = NoMatch;