This file contains hidden or 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 } from 'react'; | |
| import DatePicker from 'react-datepicker'; | |
| import MaskedInput from 'react-maskedinput'; | |
| import moment from 'moment'; | |
| export default class DateField extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { value: '' } |
This file contains hidden or 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
| version: '2' | |
| services: | |
| # Web server | |
| web: | |
| build: | |
| context: ./ | |
| dockerfile: Dockerfile | |
| ports: | |
| - "80:80" |
This file contains hidden or 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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |