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

Lee SeoYeon's avatar
.    
Lee SeoYeon committed
6
7
8
9
10
const INIT_PAGE = {
    title: '',
    url: '',
}

Lee SeoYeon's avatar
.    
Lee SeoYeon committed
11
function Bookmark() {
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
    const [page, setPage] = useState(INIT_PAGE)
    const [success, setSuccess] = useState(false)

    async function handleSubmit(event) {
        event.preventDefault()
        try {
            setError('')
            const response = await axios.post('/api/users/', user)
            console.log(response.data)
            console.log(user)
            // setUser(INIT_USER)
            setSuccess(true)
        } catch (error) {
            console.log(error)
            catchErrors(error, setError)
        }
    }

Lee SeoYeon's avatar
.    
Lee SeoYeon committed
30
31
32
33
34
35
36
37
38
    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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
    }]

    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
55
                        <ListGroup.Item action href="">북마크1</ListGroup.Item>
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
56
57
58
59
60
61
62
63
                        <ListGroup.Item>북마크2</ListGroup.Item>
                    </ListGroup>
                </Form>
        </Container>
    )
}

export default Bookmark