Everything compiling again

This commit is contained in:
John Lyon-Smith
2018-02-26 09:14:04 -08:00
parent 0571196a7f
commit ab243dc6db
11 changed files with 91 additions and 148 deletions

View File

@@ -2,8 +2,9 @@ import React, { Component } from 'react'
import PropTypes from 'prop-types'
import style from './Modal.style'
import { reactAutoBind } from 'auto-bind2'
import Radium from 'radium'
export class Modal extends Component {
class Modal extends Component {
static propTypes = {
children: PropTypes.node
}
@@ -27,3 +28,5 @@ export class Modal extends Component {
)
}
}
export default Radium(Modal)