diff --git a/src/features/contacts/ContactCreatePage.tsx b/src/features/contacts/ContactCreatePage.tsx deleted file mode 100644 index 8088f3b..0000000 --- a/src/features/contacts/ContactCreatePage.tsx +++ /dev/null @@ -1,42 +0,0 @@ -// import debug from 'debug' -// import React from 'react' - -// import environment from '../graphql/relayEnvironment' -// import CreateContactMutation from '../graphql/CreateContactMutation' -// import ContactEditForm from '../components/ContactEditForm' -// import { appName } from '../consts' -// import styles from '../App.module.css' - -// // eslint-disable-next-line no-unused-vars -// const log = debug(appName + ':ContactCreatePage.js') - -// interface Props { -// history: { -// push(route: string): void -// } -// } - -// class ContactCreatePage extends React.Component { -// _handleSave = (data: Object) => { -// CreateContactMutation.commit(environment, data) -// this.props.history.push('/contacts') -// } - -// _handleCancel = () => { -// this.props.history.push('/contacts') -// } - -// render() { -// return ( -//
-//

Create Contact

-// -//
-// ) -// } -// } -// export default ContactCreatePage - -export default function ContactCreatePage() { - return null -}