ui/push-health/NotFound.jsx (15 lines of code) (raw):

import React from 'react'; import { Container, Row, Col, Alert } from 'reactstrap'; const NotFound = () => ( <Container fluid style={{ marginTop: 40 }}> <Row> <Col> <Alert color="danger"> Missing required URL parameters of <code>repo</code> and{' '} <code>revision</code>. </Alert> </Col> </Row> </Container> ); export default NotFound;