| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x 1x 1x | /**
* Proptypes used for the context
*/
import { PropTypes as PT } from 'react';
export const contextTypes = {
offset: PT.number,
events: PT.object,
animate: PT.bool,
container: PT.object
};
export const defaultConfig = {
offset: 0,
events: {},
animate: true,
container: undefined
};
export default {
contextTypes,
defaultConfig
};
|