From d2ad5924bce17e3b07ee0af86a8739559dac3b35 Mon Sep 17 00:00:00 2001 From: realtradam Date: Wed, 15 May 2024 00:44:53 -0400 Subject: begin implementing game file upload and also styling --- app/javascript/components/Button.jsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/javascript/components/Button.jsx (limited to 'app/javascript/components/Button.jsx') diff --git a/app/javascript/components/Button.jsx b/app/javascript/components/Button.jsx new file mode 100644 index 0000000..f9505f8 --- /dev/null +++ b/app/javascript/components/Button.jsx @@ -0,0 +1,15 @@ +import React from "react"; +import { Link } from "react-router-dom"; + +export default function Button ({ link }) +{ + return ( + <> +
+
+ { link } +
+
+ + ) +}; -- cgit v1.2.3