import React from 'react';
import { isNil } from 'ramda';
export default function CreateShortUrlResult ({ creationResult }) {
if (creationResult.loading) {
return
Loading...
}
if (creationResult.error) {
return An error occurred while creating the URL :(
}
if (isNil(creationResult.result)) {
return null;
}
return Great!
;
};