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

chore: add file path input modal

This commit is contained in:
2022-07-18 22:37:32 +05:00
parent 849b2dd468
commit 27410bc32b
2 changed files with 72 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import { styled } from '@mui/material/styles'
import { BootstrapDialogTitle } from './dialogTitle'
const BootstrapDialog = styled(Dialog)(({ theme }) => ({
export const BootstrapDialog = styled(Dialog)(({ theme }) => ({
'& .MuiDialogContent-root': {
padding: theme.spacing(2)
},
@@ -14,7 +14,7 @@ const BootstrapDialog = styled(Dialog)(({ theme }) => ({
}
}))
export interface ModalProps {
type ModalProps = {
open: boolean
setOpen: React.Dispatch<React.SetStateAction<boolean>>
title: string