Skip to content

Instantly share code, notes, and snippets.

View borisyankov's full-sized avatar
🎯
Focusing

Boris Yankov borisyankov

🎯
Focusing
View GitHub Profile
import React from 'react';
import { TransitionSpring, presets } from 'react-motion';
export default class Modal {
static propTypes = {
shown: React.PropTypes.bool,
onClose: React.PropTypes.func
};