зеркало из https://github.com/mozilla/treeherder.git
18 строки
399 B
JavaScript
18 строки
399 B
JavaScript
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;
|