import { Dialog } from '@rmwc/dialog'; import React from 'react'; import styles from './create-user-dialog.module.scss'; interface CreateUserDialogProps { onClosed: () => void; } export default function CreateUserDialog({ onClosed, }: CreateUserDialogProps): JSX.Element { return (

Create User

To create a new user, open an Incognito window and go to your unique sign-up link. Then, fill out the user's profile and click "submit". Once you do, close that window and navigate back to this tab. You should see your newly created user in the "People" dashboard.

); }