kara-react-components-mobileweb
Version:
kara项目移动端react组件库
24 lines (16 loc) • 301 B
JavaScript
/**
* Created by zhangjingguo on 2017/7/12.
*/
import React, { Component } from 'react'
import { string } from 'prop-types'
class Modal1 extends Component {
static propTypes = {
type: string,
}
static defaultProps = {
type: 'dialog'
}
render (){
}
}
export default Modal1