Skip to content

Commit

Permalink
fix test:types
Browse files Browse the repository at this point in the history
  • Loading branch information
mnajdova committed May 21, 2021
1 parent 547dc1b commit f5daf0e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';

import { withStyles } from '@material-ui/styles';
Expand Down Expand Up @@ -78,4 +79,11 @@ function AppAppBar(props) {
);
}

AppAppBar.propTypes = {
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object.isRequired,
};

export default withStyles(styles)(AppAppBar);
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as React from 'react';
import clsx from 'clsx';
import { AppBarProps, WithStyles } from '@material-ui/core';
import { AppBarProps } from '@material-ui/core';
import { Theme } from '@material-ui/core/styles';
import { withStyles } from '@material-ui/styles';
import { withStyles, WithStyles } from '@material-ui/styles';
import Link from '@material-ui/core/Link';
import AppBar from '../components/AppBar';
import Toolbar, { styles as toolbarStyles } from '../components/Toolbar';
Expand Down

0 comments on commit f5daf0e

Please sign in to comment.