Created
February 25, 2018 14:50
-
-
Save viniciusdacal/568782e726c1b7ee9c502344d19326e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import UserForm from '../../components/User/Form/Form'; | |
const ScreensUserForm = ({ match: { params } }) => ( | |
<div> | |
<h1> | |
{`${!params.id ? 'Create' : 'Update'}`} User | |
</h1> | |
<UserForm id={params.id} /> | |
</div> | |
); | |
export default ScreensUserForm; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment