Last active
July 20, 2016 12:22
-
-
Save ronal2do/da565bec083f87e5f9da691b9c7675f9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 {Input, Submit} from './Commons/Form'; | |
export default class Form extends React.Component { | |
render() { | |
return ( | |
<Form route="/api/pessoas/fisicas"> | |
<Input value="nome" /> | |
<Input value="cpf" /> | |
<Submit text="Cadastrar" /> | |
<Form/> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment