EueSuggest.js 813 Bytes
Newer Older
Spark's avatar
layout    
Spark committed
1
import React from 'react'
Spark's avatar
Spark committed
2
import { Row, Card } from 'react-bootstrap';
Spark's avatar
layout    
Spark committed
3
4

function EueSuggest() {
5
    const cardstyled = {
Spark's avatar
layout    
Spark committed
6
7
8
9
10
        margin: 'auto',
        padding: '1em',
        display: 'flex',
        justifyContent: 'center',
        width: '100%',
11
        borderWidth: '3px',
12
        borderRadius: '20px',
13
14
        borderColor: 'rgb(110, 189, 142)',
        color: '#04AB70'
Spark's avatar
layout    
Spark committed
15
16
17
18
    }

    return (
            <Row className='text-center w-100 my-2'>
19
                <Card style={cardstyled}>
Spark's avatar
layout    
Spark committed
20
21
22
23
24
25
26
27
28
29
30
31
                    <Card.Title>
                        EUE 제안
                    </Card.Title>
                    <Card.Text>
                        "에어컨을 줄이시면 더 효율적입니다."
                    </Card.Text>
                </Card>
            </Row>
    )
}

export default EueSuggest;