aboutsummaryrefslogtreecommitdiff
path: root/src/lib/components/Window/WindowSurface/WindowSurface.js
diff options
context:
space:
mode:
authorEug-VS <eug-vs@keemail.me>2020-01-28 17:00:00 +0300
committerEug-VS <eug-vs@keemail.me>2020-02-03 14:29:42 +0300
commitbf98ff90a7ad9fad79f75a2215108dcfdaa02ed2 (patch)
tree54b2447ec501508f9da89cde2aa5d036010d90e9 /src/lib/components/Window/WindowSurface/WindowSurface.js
parent53143dfc36e66e285256706a8ec837e2bd2f8427 (diff)
downloadreact-benzin-bf98ff90a7ad9fad79f75a2215108dcfdaa02ed2.tar.gz
feat!: install Typescript, migrate Window to .tsx
Diffstat (limited to 'src/lib/components/Window/WindowSurface/WindowSurface.js')
-rw-r--r--src/lib/components/Window/WindowSurface/WindowSurface.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/lib/components/Window/WindowSurface/WindowSurface.js b/src/lib/components/Window/WindowSurface/WindowSurface.js
deleted file mode 100644
index 7859bf6..0000000
--- a/src/lib/components/Window/WindowSurface/WindowSurface.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import React from 'react';
-
-import { Paper, makeStyles } from '@material-ui/core';
-
-
-const useStyles = makeStyles(theme => ({
- surface: {
- position: 'absolute',
- display: 'flex',
- flexDirection: 'column',
- overflowY: 'auto',
- scrollbarColor: `${theme.palette.secondary.dark} ${theme.palette.secondary.light}`,
-
- '& a.MuiTypography-root': {
- color: theme.palette.primary.light,
- },
- }
-}));
-
-
-const WindowSurface = ({ size, position, children }) => {
- const classes = useStyles();
-
- return (
- <Paper
- variant="outlined"
- style={{...size, ...position}}
- className={classes.surface}
- >
- {children}
- </Paper>
- )
-};
-
-
-export default WindowSurface;