1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-10 07:50:05 +00:00

lint: fixed linting issues

This commit is contained in:
Yury Shkoda
2023-07-24 18:36:08 +03:00
parent 167b14fed0
commit 0f91395fbb
4 changed files with 23 additions and 19 deletions

View File

@@ -3,12 +3,11 @@ import Snackbar from '@mui/material/Snackbar'
import MuiAlert, { AlertProps } from '@mui/material/Alert'
import Slide, { SlideProps } from '@mui/material/Slide'
const Alert = React.forwardRef<HTMLDivElement, AlertProps>(function Alert(
props,
ref
) {
return <MuiAlert elevation={6} ref={ref} variant="filled" {...props} />
})
const Alert = React.forwardRef<HTMLDivElement, AlertProps>(
function Alert(props, ref) {
return <MuiAlert elevation={6} ref={ref} variant="filled" {...props} />
}
)
const Transition = (props: SlideProps) => {
return <Slide {...props} direction="up" />