Skip to content

Instantly share code, notes, and snippets.

@ronal2do
Last active July 20, 2016 12:22
Show Gist options
  • Save ronal2do/da565bec083f87e5f9da691b9c7675f9 to your computer and use it in GitHub Desktop.
Save ronal2do/da565bec083f87e5f9da691b9c7675f9 to your computer and use it in GitHub Desktop.
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