robosats/frontend/src/components/OrderPage.js

11 lines
233 B
JavaScript
Raw Normal View History

import React, { Component } from "react";
export default class OrderPage extends Component {
constructor(props) {
super(props);
}
render() {
return <p>This is the single order detail view page</p>;
}
}