Mypage.js 1.36 KB
Newer Older
박상호's avatar
0106    
박상호 committed
1
import React from 'react'
박상호's avatar
1    
박상호 committed
2
import { Tab, Tabs, Card, Image, Button, Container, Row, Col } from 'react-bootstrap'
박상호's avatar
0106    
박상호 committed
3
4
5
6
7
import mypagetiger from '../mypagetiger.svg';
import person from '../person.svg';


function Mypage() {
박상호's avatar
1    
박상호 committed
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
34
35
36
37
38
39
40
41
42
43
  return (

    <Container className="justify-content-center py-5">
      <article id="top" class="wrapper style1">
        <Card className="px-3 py-3">
          <Row className="px-3">
            <Image src={person} roundedCircle className="img-thumbnail mx-3 justify-content-center" />
            <Col>
            <Row>
              
              <h1 className="my-4 justify-content-center">
                <Image src={mypagetiger} width={"30px"} />
                <strong> Login.user </strong> 환영합니다!
              </h1>
                  환영합니다.
            </Row>

              <Row className="justify-content-center">
                <Tabs defaultActiveKey="mypage" id="uncontrolled-tab-example">
                  <Tab eventKey="주문현황" title="주문현황">
                  </Tab>
                  <Tab eventKey="배송중" title="배송중">
                  </Tab>
                  <Tab eventKey="배송완료" title="배송완료">
                  </Tab>
                </Tabs>
              </Row>
            </Col>
          </Row>
        </Card>
      </article>


    </Container >

  )
박상호's avatar
0106    
박상호 committed
44
45
46
47
48
49

}



export default Mypage