-
-
Notifications
You must be signed in to change notification settings - Fork 535
Recipes
Wojciech Maj edited this page Oct 29, 2018
·
6 revisions
import React, { Component } from 'react';
import Calendar from 'react-calendar';
export default class Test extends Component {
state = {
value: new Date(),
}
onChange = value => this.setState({ value })
render() {
const { value } = this.state;
return (
<Calendar
onChange={this.onChange}
value={value}
/>
);
}
}