mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-15 11:56:23 +00:00
11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
import React, { Component } from "react";
|
|
|
|
export default class MakePage extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return <p>This is the order maker page</p>;
|
|
}
|
|
} |