Help dialog with available hotkeys

This commit is contained in:
Deluan
2021-02-03 19:08:03 -05:00
parent a168f46b95
commit 847531391d
16 changed files with 162 additions and 66 deletions
+8
View File
@@ -0,0 +1,8 @@
import { withStyles } from '@material-ui/core/styles'
import MuiDialogContent from '@material-ui/core/DialogContent'
export const DialogContent = withStyles((theme) => ({
root: {
padding: theme.spacing(2),
},
}))(MuiDialogContent)