This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- private/email-template.html --> | |
<div>Welcome {{name}}</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component, PropTypes } from 'react'; | |
// Task component - represents a single todo item | |
export default class ScheduleField extends Component { | |
change(event){ | |
this.props.onChange({ | |
time : this.refs.timeInput | |
}) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default: | |
suites: | |
web_features: | |
paths: [ "%paths.base%/features/web" ] | |
contexts: | |
# - FeatureContext | |
- WebContext | |
- Drupal\DrupalExtension\Context\DrupalContext | |
- Drupal\DrupalExtension\Context\MarkupContext | |
- Drupal\DrupalExtension\Context\MinkContext |