chore:lint

This commit is contained in:
karishmas6
2024-07-25 22:47:09 +05:30
parent 3fde96de79
commit 58e2791ab2

View File

@@ -3,22 +3,22 @@ import styled from 'styled-components';
import { Box, Button, IconButton, Stack, Typography } from "@mui/material"; import { Box, Button, IconButton, Stack, Typography } from "@mui/material";
interface ConfirmationBoxProps { interface ConfirmationBoxProps {
selector: string; selector: string;
onClose: () => void; onClose: () => void;
} }
const ConfirmationBox = ({ selector, onClose }: ConfirmationBoxProps) => { const ConfirmationBox = ({ selector, onClose }: ConfirmationBoxProps) => {
return ( return (
<React.Fragment> <React.Fragment>
<Typography> <Typography>
Do you want to proceed? Do you want to proceed?
</Typography> </Typography>
<Box style={{marginTop: '4px'}}> <Box style={{ marginTop: '4px' }}>
Selector: {selector} Selector: {selector}
<pre>{selector}</pre> <pre>{selector}</pre>
</Box> </Box>
</React.Fragment> </React.Fragment>
); );
}; };
const ConfirmationBoxContainer = styled.div` const ConfirmationBoxContainer = styled.div`