feat: text & ss button

This commit is contained in:
karishmas6
2024-07-24 20:25:22 +05:30
parent 03a92d8f0d
commit 2521a1a25c

View File

@@ -8,6 +8,7 @@ import { SimpleBox } from "../atoms/Box";
import Typography from "@mui/material/Typography";
import { useGlobalInfoStore } from "../../context/globalInfo";
import { PairForEdit } from "../../pages/RecordingPage";
import { useActionContext } from '../../context/browserActions';
interface RightSidePanelProps {
pairForEdit: PairForEdit;
@@ -79,6 +80,9 @@ export const RightSidePanel = ({pairForEdit}: RightSidePanelProps) => {
)
: null
}
<Button variant="contained">Capture Text</Button>
<Button variant="contained">Capture Screenshot</Button>
</Paper>
);
};