From ce6f6a984b374b189141116433ced80dfa0c2aae Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Thu, 13 Feb 2020 20:00:03 +0100 Subject: webui: move pages components --- webui/src/bug/SetTitle.tsx | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 webui/src/bug/SetTitle.tsx (limited to 'webui/src/bug/SetTitle.tsx') diff --git a/webui/src/bug/SetTitle.tsx b/webui/src/bug/SetTitle.tsx deleted file mode 100644 index e57aaafb..00000000 --- a/webui/src/bug/SetTitle.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { makeStyles } from '@material-ui/core/styles'; -import React from 'react'; - -import Author from '../components/Author'; -import Date from '../components/Date'; - -import { SetTitleFragment } from './SetTitleFragment.generated'; - -const useStyles = makeStyles(theme => ({ - main: { - ...theme.typography.body1, - marginLeft: theme.spacing(1) + 40, - }, - bold: { - fontWeight: 'bold', - }, -})); - -type Props = { - op: SetTitleFragment; -}; - -function SetTitle({ op }: Props) { - const classes = useStyles(); - return ( -
- - changed the title from - {op.was} - to - {op.title} - -
- ); -} - -export default SetTitle; -- cgit