import React, { useState } from 'react'; import { Link, Redirect } from 'react-router-dom'; import ohuh from './ohuh-sm.PNG'; import Place from './Components/Place'; import halla from './halla.jpg'; import { Container, Row, Card, Image, InputGroup, FormControl, Button, Form } from 'react-bootstrap'; function Search(props) { const [state, setState] = useState(false); const [search, setSearch] = useState(props.location.state.id); const [modalShow, setModalShow] = useState(false); if (state !== false) { return ; } const handleChange = (e) => { setSearch(e.target.value); } const handleSubmit = (e) => { setState(true); } return (
한라산(hallasan) 제주 서귀포시 토평동 산15-1 setModalShow(false)} /> 성산일출봉(sungsan) 제주 서귀포시 성산읍 성산리 1 setModalShow(false)} /> 해녀의 집(haenyeo) 제주 서귀포시 성산읍 한도로 141-13지번오조리 3 오조해녀의집 setModalShow(false)} /> 오설록 티 뮤지엄(osulloc) 제주 서귀포시 안덕면 신화역사로 15 오설록지번서광리 1235-1 오설록 setModalShow(false)} />
); } export default Search;