import React from 'react'; import ReactMarkdown from 'react-markdown/with-html'; //panels import CommonLinks from '../panels/common_links.jsx'; class PatronList extends React.Component { constructor(props) { super(props); this.state = { data: '', warning: '' }; this.sendRequest('/content/patron_list.md'); } render() { let warningStyle = { display: this.state.warning.length > 0 ? 'flex' : 'none' }; return (
{this.state.warning}
You can become a patron here.
{this.state ?Loading patron list...
}