From 8b85780d76ad45675582f4478eedb026b7ac25e1 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Thu, 13 Feb 2020 00:53:29 +0100 Subject: webui: start reorganizing the component structure --- webui/src/Author.tsx | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 webui/src/Author.tsx (limited to 'webui/src/Author.tsx') diff --git a/webui/src/Author.tsx b/webui/src/Author.tsx deleted file mode 100644 index 852cd2b7..00000000 --- a/webui/src/Author.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import MAvatar from '@material-ui/core/Avatar'; -import Tooltip from '@material-ui/core/Tooltip/Tooltip'; -import React from 'react'; - -import { AuthoredFragment } from './Author.generated'; - -type Props = AuthoredFragment & { - className?: string; - bold?: boolean; -}; - -const Author = ({ author, ...props }: Props) => { - if (!author.email) { - return {author.displayName}; - } - - return ( - - {author.displayName} - - ); -}; - -export const Avatar = ({ author, ...props }: Props) => { - if (author.avatarUrl) { - return ; - } - - return {author.displayName[0]}; -}; - -export default Author; -- cgit