mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-15 03:46:24 +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>;
|
||
|
}
|
||
|
}
|