Skip to content

Instantly share code, notes, and snippets.

View mikansc's full-sized avatar
🏠
Working from home

Michael Nascimento mikansc

🏠
Working from home
View GitHub Profile
@mikansc
mikansc / App.jsx
Created March 17, 2023 01:25
Arquivo App do final da aula!
import { useState, useEffect } from "react";
function App() {
const corInicial = "btn-primary";
const [nome, setNome] = useState(""); // ["", function() { ... }];
const [cor, setCor] = useState(corInicial);
function handleSubmeterFormulario() {
alert(nome);