diff --git a/frontend/src/components/Button.js b/frontend/src/components/Button.js
index a5c2335..ef4ff43 100644
--- a/frontend/src/components/Button.js
+++ b/frontend/src/components/Button.js
@@ -2,6 +2,8 @@ import React from "react";
import "./Button.css";
import { Link } from "react-router-dom";
+const newTo = (props) => '#';
+
const STYLES = ["btn--primary", "btn--outline"];
const SIZES = ["btn--medium", "btn--large"];
@@ -11,6 +13,7 @@ export const Button = ({
onClick,
buttonStyle,
buttonSize,
+ newTo,
}) => {
const checkButtonStyle = STYLES.includes(buttonStyle)
? buttonStyle
@@ -18,8 +21,9 @@ export const Button = ({
const checkButtonSize = SIZES.includes(buttonSize) ? buttonSize : SIZES[0];
+
return (
-
+