

const Wrapper = (props) => {

	const { component: Component, ...rest} = props

	return <Component {...rest} />
}

export default Wrapper


