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

function EueSuggest() {
Spark's avatar
Spark committed
5

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

Spark's avatar
layout    
Spark committed
19
20

    return (
Spark's avatar
Spark committed
21
22
23
24
        <Row className='text-center w-100 my-2'>
            <Card style={cardstyled}>

                <Card.Title>
Spark's avatar
Spark committed
25
26
27
                    <p>
                        EUE 제안
                    </p>
Spark's avatar
Spark committed
28
29
30
31
                </Card.Title>
                <Card.Text>
                    "에어컨을 줄이시면 더 효율적입니다."
                </Card.Text>
Spark's avatar
Spark committed
32

Spark's avatar
Spark committed
33
34
            </Card>
        </Row>
Spark's avatar
layout    
Spark committed
35
36
37
38
    )
}

export default EueSuggest;