import { Button, Navbar, Nav, Form, FormControl } from 'react-bootstrap';
import React, { useState } from 'react'
import { Redirect } from 'react-router-dom'
const userName = "정연우";
function HomePage() {
const [toprofile, setToprofile] = useState(false)
function goProfile() {
return (setToprofile(true))
}
return (
<>