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