import Dialog from '~/components/Dialog'; import Input from '~/components/Input'; interface CreateUserProps { isDisabled?: boolean; } // TODO: Support image upload for user avatars export default function CreateUser({ isDisabled }: CreateUserProps) { return ( Add a new user Add a new user Enter a username to create a new user. Usernames can be addressed when managing ACL policies.
); }