Trydays.js 1.46 KB
Newer Older
Spark's avatar
layout    
Spark committed
1
2
import React from 'react'
import { Container, Row, Card, Table, Button } from 'react-bootstrap';
3
4
import '../App.css'

Spark's avatar
layout    
Spark committed
5
6

function Trydays() {
7
    const cardstyled = {
Spark's avatar
layout    
Spark committed
8
9
10
11
12
13
        fontSize: '0.5em',
        margin: 'auto',
        padding: '1em',
        display: 'flex',
        justifyContent: 'center',
        width: '100%',
14
15
16
        borderWidth: '1.5px',
        borderRadius: '20px',
        borderColor: '#04AB70',
Spark's avatar
layout    
Spark committed
17
18
19
20
21
22
23
24
        color: 'rgb(110, 189, 142)'
    }
    const btnstyled = {
        background: 'rgb(110, 189, 142)',
        margin: '1px',
        maxWidth: '100%',
        borderWidth: '2px',
        fontSize: '10px',
25
        borderColor: 'rgba(195, 195, 195, 0.712)',
Spark's avatar
layout    
Spark committed
26
        borderRadius: '20px',
27
        color: 'white'
Spark's avatar
layout    
Spark committed
28
29
30
31
    }

    return (
            <Row className='text-center w-100 my-2'>
32
                <Card style={cardstyled}>
Spark's avatar
layout    
Spark committed
33
34
35
36
37
38
39
                    <Card.Title>
                        유저아이디
                    </Card.Title>
                    <Card.Subtitle>
                        지역
                        울릉면
                        지역코드
40
                        <Button variant='light' style={btnstyled}>
Spark's avatar
layout    
Spark committed
41
42
43
44
45
46
47
48
49
50
51
52
53
54
                            변경
                        </Button>

                    </Card.Subtitle>
                    
                    <Card.Text>
                        환경을 향한 노력 ㅁㅁㅁ일  입니다.
                    </Card.Text>
                </Card>
            </Row>
    )
}

export default Trydays;