import React from 'react'; import PropTypes from 'prop-types'; import { Row, Col, FormGroup, Label } from './../../../../components'; export const Example = ({ title, exampleInput, children, no }) => (
{ title } #{ no }
{ exampleInput }
                    
                        { children }
                    
                
); Example.propTypes = { exampleInput: PropTypes.node.isRequired, children: PropTypes.string.isRequired, title: PropTypes.string.isRequired, no: PropTypes.node.isRequired }