Newer
Older
1
2
3
4
5
6
7
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
import React from 'react'
import styled from 'styled-components'
import { Row, RowItem, LabelHeader, LinkText } from '../UIComponents/FormItems'
const EmailNotifications = ({ subscribed = '' }) => (
<Root>
<Row noMargin>
<RowItem>
<LabelHeader>Email Notifications </LabelHeader>
</RowItem>
</Row>
{!subscribed ? (
<Row noMargin>
<RowItem>
<LinkText>Re-subscribe</LinkText>
</RowItem>
</Row>
) : (
<Row noMargin>
<RowItem>
<LinkText>Unsubscribe</LinkText>
</RowItem>
</Row>
)}
</Root>
)
export default EmailNotifications
// #region styles
const Root = styled.div`
display: flex;
flex-direction: column;
max-width: 30em;
`
// #endregion