import React, { Component } from 'react'; import { Link } from 'react-router-dom'; import TypingDemo from '../demos/typing'; import RoleypolyDemo from '../demos/roleypoly'; import * as Actions from '../../actions'; import './styles.sass'; import discordLogo from '../../pages/images/discord-logo.svg'; export default class AddServer extends Component { polling = null; componentDidMount() { if (this.props.match.params.server !== undefined) { this.pollingStop = Actions.startServerPolling(this.props.dispatch); } } componentWillUnmount() { if (this.pollingStop != null) { this.pollingStop(); } } render() { return (

What is Roleypoly?

Roleypoly is a helper bot to help server members assign themselves roles on Discord.

Could you easily remember 250 role names? You'd use images or bot commands to tell everyone what they can assign. This kinda limits how many roles you can reasonably have. And don't even start with emojis.{' '} 💢
Just click. 🌈 💖
Authorize via Discord
); } }