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
export function loadLists() { | |
return [ | |
{ | |
title: 'Tarefas', | |
creatable: true, | |
cards: [ | |
{ | |
id: 1, | |
content: 'Estudar módulo 01 de NodeJS', | |
labels: ['#7159c1'], |
OlderNewer