Skip to content

Commit

Permalink
Merge pull request #4153 from WiXSL/patch-export-usestyle
Browse files Browse the repository at this point in the history
Incorrect useStyles exports.
  • Loading branch information
fzaninotto authored Dec 13, 2019
2 parents 0639412 + 1d3bdbd commit 991235e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ra-ui-materialui/src/detail/Edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Edit.propTypes = {
successMessage: PropTypes.string,
};

export const useStyles = makeStyles({
const useStyles = makeStyles({
root: {},
main: {
display: 'flex',
Expand Down
2 changes: 1 addition & 1 deletion packages/ra-ui-materialui/src/detail/Show.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Show.propTypes = {
title: PropTypes.node,
};

export const useStyles = makeStyles({
const useStyles = makeStyles({
root: {},
main: {
display: 'flex',
Expand Down
2 changes: 1 addition & 1 deletion packages/ra-ui-materialui/src/list/List.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import DefaultActions from './ListActions';

const DefaultBulkActionButtons = props => <BulkDeleteButton {...props} />;

export const useStyles = makeStyles(theme => ({
const useStyles = makeStyles(theme => ({
root: {},
main: {
display: 'flex',
Expand Down

0 comments on commit 991235e

Please sign in to comment.