import React, { useState } from 'react'; import { Link, Redirect } from 'react-router-dom'; import ohuh from './ohuh-sm.PNG'; import { Container, Row, Col, Image, InputGroup, FormControl, Button } from 'react-bootstrap'; function Search(props) { const [search, setSearch] = useState(""); const handleChange = (e) => { setSearch(e.target.value); } const handleSubmit = (e) => { } return ( {/*
*/}
여기는 검색창이야아아아ㅏㅏ
//
// {console.log(props)} //
// ohuh // 여기는 검색창이야아아아ㅏㅏ //
// // //
//
//
); } export default Search;