update users module to use new pending and error state

This commit is contained in:
Sebastian Sdorra
2018-07-30 13:38:15 +02:00
parent 9e029c0c5c
commit 7be1366c1a
14 changed files with 274 additions and 443 deletions

View File

@@ -1,12 +1,12 @@
//@flow
import React from "react";
import { translate } from "react-i18next";
import type { UserEntry } from "../../types/UserEntry";
import type { User } from "../../types/User";
import { NavLink } from "../../../components/navigation";
type Props = {
t: string => string,
user: UserEntry,
user: User,
editUrl: String
};