Skip to content
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.

Use prop-types package #77

Merged
merged 1 commit into from Jun 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -40,6 +40,7 @@
},
"dependencies": {
"get-prefix": "^1.0.0",
"prop-types": "^15.5.10",
"react-motion": "^0.4.5"
},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion src/Transition.jsx
@@ -1,4 +1,5 @@
import React, { Component, PropTypes, Children, createElement, cloneElement } from 'react'
import React, { Component, Children, createElement, cloneElement } from 'react'
import PropTypes from 'prop-types'
import { TransitionMotion } from 'react-motion'
import isElement from './is-element'
import fromRMStyles from './from-RM-styles'
Expand Down