Get parts on profile to update when user saves a new part

This commit is contained in:
Kurt Hutten
2020-12-30 12:45:47 +11:00
parent fff0956746
commit 62b26b969e
7 changed files with 55 additions and 33 deletions

View File

@@ -97,9 +97,9 @@ const DELETE_PART_MUTATION = gql`
}
`
export const Loading = () => <div>Loading...</div>
export const Loading = () => <div className="h-screen">Loading...</div>
export const Empty = () => <div>Empty</div>
export const Empty = () => <div className="h-full">Empty</div>
export const Failure = ({ error }) => <div>Error: {error.message}</div>