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

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

    return (
            <Row className='text-center w-100 my-2'>
29
                <Card style={cardstyled}>
Spark's avatar
layout    
Spark committed
30
31
32
33
34
35
36
37
38
39
40
41
                    <Card.Title>
                        EUE 제안
                    </Card.Title>
                    <Card.Text>
                        "에어컨을 줄이시면 더 효율적입니다."
                    </Card.Text>
                </Card>
            </Row>
    )
}

export default EueSuggest;