From 0ba0c350346cd45bcc0f90f0454152fde6803f2e Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 10 Sep 2024 03:17:11 +0530 Subject: [PATCH] feat: schedule button --- src/components/molecules/RecordingsTable.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index 6bd3e7ef..31f77baf 100644 --- a/src/components/molecules/RecordingsTable.tsx +++ b/src/components/molecules/RecordingsTable.tsx @@ -223,3 +223,19 @@ const InterpretButton = ({ handleInterpret }: InterpretButtonProps) => { ) } + +interface ScheduleButtonProps { + handleSchedule: () => void; +} + +const ScheduleButton = ({ handleSchedule }: ScheduleButtonProps) => { + return ( + + + + ); +};