added missing import

This commit is contained in:
Maren Süwer
2018-07-23 08:16:06 +02:00
parent e383eb250a
commit 868aade9af

View File

@@ -3,6 +3,7 @@ import React from "react";
import { connect } from "react-redux"; import { connect } from "react-redux";
import UserForm from "./UserForm"; import UserForm from "./UserForm";
import type { User } from "../types/User"; import type { User } from "../types/User";
import type { UserEntry } from "../types/UserEntry";
import Loading from "../../components/Loading"; import Loading from "../../components/Loading";
import { updateUser, fetchUser } from "../modules/users"; import { updateUser, fetchUser } from "../modules/users";