import React, { useState } from 'react'; import ContentWrapper from './ContentWrapper'; export default ({ onClick }) => { const [servername, setServerName] = useState(""); const onChange = event => { setServerName(event.target.value); } return

Select a server name

It's important to choose a good name for your server because it cannot be changed later.

The name forms a part of the user id's for the users on the server. Which will look like `@you:server.name`. The name will also be what other servers look up when they're trying to reach this one.

Normally the server name is usually just your domain. For example matrix.org's server is known as `matrix.org`.

; }