// Libraries
import React from 'react';

// Components
import FormDesign from 'Components/FormDesign/index';

const dataProps = {};

const CalendarExample = () => {
    return (
        <div style={{width: '90%', height: '100vh', margin: 'auto', padding: '30px 0'}}>
            <FormDesign {...dataProps}  />
        </div>
    );
};

export default CalendarExample;
