From 2a8ec7f9f08d4d56dd715683b359be1f367908e5 Mon Sep 17 00:00:00 2001 From: Nikhil Trehan Date: Fri, 9 Aug 2024 23:07:41 -0400 Subject: [PATCH] Migrated Checkin Button to Material UI --- .../presentational/CheckInButtons.js | 31 ++++++++++++------- 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/client/src/components/presentational/CheckInButtons.js b/client/src/components/presentational/CheckInButtons.js index ce60f42e..08acfbce 100644 --- a/client/src/components/presentational/CheckInButtons.js +++ b/client/src/components/presentational/CheckInButtons.js @@ -1,28 +1,35 @@ -import React from "react"; -import { Link } from "react-router-dom"; - -import "../../sass/Home.scss"; +import React from 'react'; +import { Link } from 'react-router-dom'; +import Button from '@mui/material/Button'; const CheckInButtons = (props) => { return ( <> - CHECK IN AS RETURNING USER - - + {props.events.length > 1 && ( - + )} );