Bookmark.js 2.19 KB
Newer Older
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
1
2
3
4
5
6
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'

function Bookmark() {
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
    // function addFavorite() {
    //     const title = document.title
    //     const url = window.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;
    //     }
    // }
    const add_Page = [{
        title:'즐겨찾기1',
        url:'http://localhost:3000',
    }, {
        title:'즐겨찾기2',
        url:'https://www.naver.com/',
    }, {
        title:'즐겨찾기3',
        url:'https://www.youtube.com/watch?v=wo46N-LQK7o'
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
34
    }]
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
35
36
    // const addPlace = addFavorite(add_Page)
  
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

    return (
        <Container>
            <Navbar bg="primary" variant="dark">
                <Navbar.Brand href="/">북마크</Navbar.Brand>
                <Nav className="mr-auto">
                    <Nav.Link href="/">Home</Nav.Link>
                </Nav>
                {/* <Form inline>
                <FormControl type="text" placeholder="Search" className="mr-sm-2" />
                <Button variant="outline-light">Search</Button>
            </Form> */}
            </Navbar>
                <Form>
                    <ListGroup>
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
52
                        <ListGroup.Item action href="">북마크1</ListGroup.Item>
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
53
54
55
56
57
58
59
60
                        <ListGroup.Item>북마크2</ListGroup.Item>
                    </ListGroup>
                </Form>
        </Container>
    )
}

export default Bookmark