mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-15 03:46:24 +00:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
|
import React, { Component } from "react";
|
||
|
|
||
|
export default class WaitingRoomPage extends Component {
|
||
|
constructor(props) {
|
||
|
super(props);
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
return <p>This is the waiting room</p>;
|
||
|
}
|
||
|
}
|