import React, { useState, useEffect } from 'react' import { Alert, Col, Card, Container, Form, Row, Button, Nav, Navbar, ListGroup, Image, Table } from "react-bootstrap" import axios from "axios" import { Redirect } from 'react-router-dom' // import ohuhsm from "./ohuh-sm.PNG"; // function addFavorite() { // const title = document.title // const url = location.href // if (window.sidebar && window.sidebar.addPanel) { // window.sidebar.addPanel(title, url, "") // } else if (window.opera && window.print) { // const elem = document.createElement('a'); // elem.setAttribute('href', url); // elem.setAttribute('title', title); // elem.setAttribute('rel', 'sidebar'); // elem.click(); // } else if (document.all) { //msie // window.external.AddFavorite(url, title); // } else { // alert("해당브라우저는 즐겨찾기 추가기능이 지원되지 않습니다.\n\n수동으로 즐겨찾기에 추가해주세요."); // return true; // } // return ( // // // // // ) // } function Bookmark() { const [index, setIndex] = useState(1); const [showSet, setShowSet] = useState([false, false, false, false]); const url = [{ urlname: "북마크이름", urlpage: "안녕하세요", }] return ( 북마크 {/*
*/}
{url.urlname} 북마크1 북마크2 북마크3 북마크4 북마크5 북마크6 북마크7
) } export default Bookmark