import React from "react"; import { Link } from "react-router-dom"; const Button = ( { onClick, title, borderType, to, type, className, submit } ) => { return ( {submit ? : title} ); }; export default Button;