UNPKG

react-components-calendar

Version:
35 lines (22 loc) 393 B
/** * Created by simba on 09/11/2017. */ import React from 'react'; import Calendar from '../../../components/index.js' class IndexPage extends React.Component { constructor() { super(); } componentDidMount(){ } componentWillReceiveProps(nextProps){ } render() { return ( <div> <Calendar /> </div> ); } } export default IndexPage;