mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-10 15:15:34 +00:00
13 lines
212 B
JavaScript
13 lines
212 B
JavaScript
import { Component } from 'react';
|
|
|
|
export default class ShipyardPage extends Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return <div>Page {this.props.path} Not Found</div>;
|
|
}
|
|
}
|