Add actual start time to team

This commit is contained in:
John Lyon-Smith
2018-04-27 15:51:38 -07:00
parent d2a22fd3a5
commit 1b5ccf251f
14 changed files with 3583 additions and 3374 deletions

View File

@@ -1,7 +1,7 @@
import React from 'react'
import PropTypes from 'prop-types'
import { Text, Icon } from 'ui'
import { sizeInfo } from 'ui/style'
import React from "react"
import PropTypes from "prop-types"
import { Text, Icon } from "ui"
import { sizeInfo } from "ui/style"
export class BoundEmailIcon extends React.Component {
static propTypes = {
@@ -27,7 +27,11 @@ export class BoundEmailIcon extends React.Component {
<div>
<Text>&nbsp;</Text>
<br />
<Icon name={value ? 'confirmed' : 'warning'} size={sizeInfo.formBoundIcon} margin={sizeInfo.formBoundIconMargin} />
<Icon
name={value ? "confirmed" : "warning"}
size={sizeInfo.formBoundIcon}
margin={sizeInfo.formBoundIconMargin}
/>
</div>
)
}