chore:lint
This commit is contained in:
@@ -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`
|
||||||
|
|||||||
Reference in New Issue
Block a user