mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-01 01:35:11 +00:00
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
import { connect } from "react-redux";
|
|
import { doShowSnackBar } from "redux/actions/app";
|
|
import Address from "./view";
|
|
|
|
export default connect(null, {
|
|
doShowSnackBar,
|
|
})(Address);
|