UNPKG

openuicomponent

Version:
20 lines (18 loc) 459 B
/** * Created by yan on 16-1-20. */ import React from 'react'; import ReactDom from 'react-dom'; import {Button, Tag, Clock, Son2Farther} from '../../lib/index'; import 'style-loader!css-loader!./style.css'; const Root = props => { return ( <ul> <li><Button/></li> <li><Tag/></li> <li><Clock date={new Date().getTime()}/></li> <li><Son2Farther/></li> </ul> ) } ReactDom.render(<Root/>, document.getElementById('root'));