mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-22 22:37:50 +00:00
fix module.exports
This commit is contained in:
@@ -79,4 +79,4 @@ const AccountPage = (props)=>{
|
||||
</UIPage>);
|
||||
};
|
||||
|
||||
module.exports = AccountPage;
|
||||
export default AccountPage;
|
||||
|
||||
@@ -176,4 +176,4 @@ const BrewItem = ({
|
||||
);
|
||||
};
|
||||
|
||||
module.exports = BrewItem;
|
||||
export default BrewItem;
|
||||
|
||||
@@ -279,4 +279,4 @@ const ListPage = createClass({
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = ListPage;
|
||||
export default ListPage;
|
||||
|
||||
@@ -35,4 +35,4 @@ const UIPage = createClass({
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = UIPage;
|
||||
export default UIPage;
|
||||
|
||||
@@ -415,4 +415,4 @@ const EditPage = (props)=>{
|
||||
);
|
||||
};
|
||||
|
||||
module.exports = EditPage;
|
||||
export default EditPage;
|
||||
|
||||
@@ -40,4 +40,4 @@ function LockNotification(props) {
|
||||
</Dialog>;
|
||||
};
|
||||
|
||||
module.exports = LockNotification;
|
||||
export default LockNotification;
|
||||
|
||||
@@ -22,4 +22,4 @@ const ErrorPage = ({ brew })=>{
|
||||
);
|
||||
};
|
||||
|
||||
module.exports = ErrorPage;
|
||||
export default ErrorPage;
|
||||
|
||||
@@ -268,4 +268,4 @@ const errorIndex = (props)=>{
|
||||
};
|
||||
};
|
||||
|
||||
module.exports = errorIndex;
|
||||
export default errorIndex;
|
||||
|
||||
@@ -230,4 +230,4 @@ const HomePage =(props)=>{
|
||||
);
|
||||
};
|
||||
|
||||
module.exports = HomePage;
|
||||
export default HomePage;
|
||||
|
||||
@@ -276,4 +276,4 @@ const NewPage = (props)=>{
|
||||
);
|
||||
};
|
||||
|
||||
module.exports = NewPage;
|
||||
export default NewPage;
|
||||
|
||||
@@ -116,4 +116,4 @@ const SharePage = (props)=>{
|
||||
);
|
||||
};
|
||||
|
||||
module.exports = SharePage;
|
||||
export default SharePage;
|
||||
|
||||
@@ -61,4 +61,4 @@ const UserPage = (props)=>{
|
||||
);
|
||||
};
|
||||
|
||||
module.exports = UserPage;
|
||||
export default UserPage;
|
||||
|
||||
@@ -430,4 +430,4 @@ const VaultPage = (props)=>{
|
||||
);
|
||||
};
|
||||
|
||||
module.exports = VaultPage;
|
||||
export default VaultPage;
|
||||
|
||||
Reference in New Issue
Block a user