Skip to content

Instantly share code, notes, and snippets.

View slooock's full-sized avatar

Kayque Avelar slooock

  • Belo Horizonte
View GitHub Profile
const [values, setValues] = React.useState({
id: '',
name : "",
email: "",
cpf: "",
telephone: [],
birthData: "",
office: "",
address: "",
complement: "",
const [values, setValues] = React.useState({
id: '',
name : "",
email: "",
cpf: "",
telephone: [],
birthData: "",
office: "",
address: "",
complement: "",
const [values, setValues] = React.useState({
id: '',
name : "",
email: "",
cpf: "",
telephone: [],
birthData: "",
office: "",
address: "",
complement: "",
@slooock
slooock / app.js
Created September 18, 2019 13:50
app js da aplicação
import React, { useState } from "react";
import { Button, FormControl, Dropdown } from "react-bootstrap";
class CustomToggle extends React.Component {
constructor(props, context) {
super(props, context);
this.handleClick = this.handleClick.bind(this);
}