Skip to content

Commit c75eb51

Browse files
author
spoeck
committed
change import of createStyles
1 parent c2effae commit c75eb51

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

src/App.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { AppBar, Badge, Divider, Drawer, Hidden, IconButton, List, ListItem, ListItemIcon, ListItemText, Theme, Toolbar, Typography, WithStyles, withStyles } from '@material-ui/core';
2-
import createStyles from '@material-ui/core/styles/createStyles';
1+
import { AppBar, Badge, createStyles, Divider, Drawer, Hidden, IconButton, List, ListItem, ListItemIcon, ListItemText, Theme, Toolbar, Typography, WithStyles, withStyles } from '@material-ui/core';
32
import TodoIcon from '@material-ui/icons/FormatListNumbered';
43
import HomeIcon from '@material-ui/icons/Home';
54
import MenuIcon from '@material-ui/icons/Menu';

src/components/TodoDialog.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Button, Dialog, DialogActions, DialogTitle, TextField, Theme, WithStyles, withStyles } from '@material-ui/core';
2-
import createStyles from '@material-ui/core/styles/createStyles';
1+
import { Button, createStyles, Dialog, DialogActions, DialogTitle, TextField, Theme, WithStyles, withStyles } from '@material-ui/core';
32
import * as React from 'react';
43
import * as TodoActions from '../actions/todo';
54

src/components/TodoTable.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Checkbox, IconButton, Paper, Table, TableBody, TableCell, TableHead, TableRow, Theme, WithStyles, withStyles } from '@material-ui/core';
2-
import createStyles from '@material-ui/core/styles/createStyles';
1+
import { Checkbox, createStyles, IconButton, Paper, Table, TableBody, TableCell, TableHead, TableRow, Theme, WithStyles, withStyles } from '@material-ui/core';
32
import DeleteIcon from '@material-ui/icons/Delete';
43
import * as React from 'react';
54
import * as TodoActions from '../actions/todo';

src/pages/HomePage.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Theme, Typography, WithStyles, withStyles } from '@material-ui/core';
2-
import createStyles from '@material-ui/core/styles/createStyles';
1+
import { createStyles, Theme, Typography, WithStyles, withStyles } from '@material-ui/core';
32
import * as React from 'react';
43
import { connect } from 'react-redux';
54
import { RouteComponentProps } from 'react-router';

src/pages/TodoPage.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Button, Grid, Theme, Typography, WithStyles, withStyles } from '@material-ui/core';
2-
import createStyles from '@material-ui/core/styles/createStyles';
1+
import { Button, createStyles, Grid, Theme, Typography, WithStyles, withStyles } from '@material-ui/core';
32
import * as React from 'react';
43
import { connect } from 'react-redux';
54
import { RouteComponentProps } from 'react-router';

0 commit comments

Comments
 (0)