import React from 'react'; import { Button as ButtonBootstrap } from 'reactstrap'; const style = { borderRadius: 20, backgroundImage: 'linear-gradient(to left, #0eaed3, #8346f6)' }; const Button = (props) => { return ( {props.children} ) } export default Button;