import {React, DiscordClasses} from "modules"; import SimpleMarkdown from "../../structs/markdown"; export default class EmptyImage extends React.Component { render() { return
{this.props.title || "You don't have anything!"}
{SimpleMarkdown.parseToReact(this.props.message || "You should probably get something.")}
{this.props.children}
; } }