mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
import React from "react";
|
|
import SubHeader from "component/subHeader";
|
|
import WalletSend from "component/walletSend";
|
|
|
|
const SendCreditsPage = props => {
|
|
return (
|
|
<main className="main--single-column">
|
|
<SubHeader />
|
|
<WalletSend />
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default SendCreditsPage;
|