Skip to content
Snippets Groups Projects
Commit 791d158c authored by Andy Summers's avatar Andy Summers
Browse files

Used named export for theme again

parent 72639da8
No related branches found
No related tags found
No related merge requests found
Pipeline #47799 failed
node_modules/ node_modules/
.vscode/ .vscode/
yarn-error.log
...@@ -29,7 +29,7 @@ import ReactDOM from "react-dom"; ...@@ -29,7 +29,7 @@ import ReactDOM from "react-dom";
import { createMuiTheme } from "@material-ui/core/styles"; import { createMuiTheme } from "@material-ui/core/styles";
import { ThemeProvider } from "@material-ui/styles"; import { ThemeProvider } from "@material-ui/styles";
import Button from "@material-ui/core/Button"; import Button from "@material-ui/core/Button";
import theme from "@uw-ui-development/uw-material-ui-react"; import { theme } from "@uw-ui-development/uw-material-ui-react";
const uwMadison = createMuiTheme(theme); const uwMadison = createMuiTheme(theme);
......
...@@ -3,7 +3,7 @@ const colorBlue = "#0479a8"; ...@@ -3,7 +3,7 @@ const colorBlue = "#0479a8";
const colorBlackFont = "#282728"; const colorBlackFont = "#282728";
const colorGrayLight = "#adadad"; const colorGrayLight = "#adadad";
export default theme = { export const theme = {
props: { props: {
MuiButton: { MuiButton: {
color: "secondary", color: "secondary",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment